Questions tagged [tile]

Patterns of identical shapes that have no gaps. They usually represent the playfield in various games. They are also used in web development for reducing the count of images which needs to be transmitted.

Tiles are a very common element in games, used to store information in a simple tessellated format. Because tile grids can easily represent the space of the entire screen, tiles are a very common means of organizing level structure.

The utility of tiles ranges from the layout of ground to hard restrictions on the movement of in-game entities. It may apply to only parts of the game such as over world movement, or it could represent the entirety of all meaningful interactions in the game.

In web development they are commonly used to reduce the amount of data which needs to be transfer. They are also used for implementing a fast hover effect, where just the view port is moved to display another state.

946 questions
-1
votes
1 answer

Using Top to split a field into segments in SQL Server

I have two tables. Table A ╔══════════════════════════════════════════╗ ║ Date Segment Total ║ ╠══════════════════════════════════════════╣ ║ 11/04/2015 1 3 ║ ║ 12/04/2015 3 2 …
Sam
  • 103
  • 7
-1
votes
1 answer

CSS Image Tiling Border Bleedout in Chrome

Trying to build a large image viewer by tiling a series of smaller absolutely positioned image tiles together. This renders find in most browsers, where each tiled image appears perfectly lined up to the surrounding ones. However, on some browsers,…
szahn
  • 183
  • 1
  • 3
  • 11
-1
votes
1 answer

LWJGL 2D Tile game using more than 50MB of RAM a secon

So I am a relatively new to programming and I am trying to make 2D game using LWJGL. I have made a background map using tiles in an array list, I then update the necessary things such as the player etc, then I draw them onto the screen, and update…
chooky1441
  • 269
  • 1
  • 2
  • 5
-1
votes
1 answer

how can i use none repeat tiling texture in three.js

I am making a panorama like krpano.I want to know how can i use small images as a texture of one cube face? http://stemkoski.github.io/Three.js/Skybox.html This example uses 6 pics as texture of cube.Could i use many small tiles as each texture of…
aboutqx
  • 418
  • 5
  • 18
-1
votes
1 answer

How to space out rows and columns in Python Tkinter

I am working on a program where it has a scroll able frame using a canvas. But inside this frame I wanted to make a tile set up. But when I tried to space out the columns and rows it does not work. Does anyone see why? I am using the grid geometry…
0Cool
  • 2,335
  • 4
  • 16
  • 16
-1
votes
1 answer

Colision detecting in java(Tiled map)

Here i have a code with a picture moving around the map. How to make this picture colide when interacte with map tiles ? I'm a beginer at java so i have no ideas. Any Help or advise is very welcome. Code: import java.awt.Color; import…
Jollyfreak
  • 39
  • 1
  • 6
-1
votes
2 answers

Huge Java array for tile base game

I'm trying to code multiplayer tile-base java game.(Just for fun) World map created using Perlin Noise. So I'm interested, how can I create really large map? For example to generate 8000x8000 map with Perlin noise requires about 4096Mb of RAM. Map…
user3696488
  • 53
  • 1
  • 5
-1
votes
1 answer

Is there a jQuery plugin for resizing tiles on hover that are confined within a box?

I'm trying to make a gallery sort of thing, but with only 3 tiles - one big, and two smaller (of the same size) - when you hover over one of the tiles, I want it to expand as shown on the attached image, so that it becomes bigger and the other two a…
valkoton
  • 23
  • 2
-1
votes
2 answers

Find connected tiles in puzzle game

I am developing my first game using libGDX and it is a puzzle game wherein you have to click on a tile to rotate it and establish a correct path from source to destination. The highlightRoute() method can be skipped completely. Instead simply run a…
Ab5
  • 606
  • 9
  • 25
-1
votes
2 answers

Trying to create a CSS/Jquery Tile menu with two links in each box - Is it possible?

I am trying to make a menu using CSS and Jquery. I'm not sure if I am on the right path but here is a picture of what I want to achieve: https://i.stack.imgur.com/3WLdG.png Here is an overview of the CSS: body { margin-left: 0px; margin-top:…
sy-huss
  • 183
  • 2
  • 14
-1
votes
1 answer

How can I show number of unread articles on a live tile on Windows Phone?

I am looking for a way to show the number of unread articles from an RSS feed on a live tile on Windows Phone. How can I do that? I know that I can use background tasks, but I want to use them effectively, so I don't drain the battery of the phone…
-1
votes
1 answer

Move tile by tile with dynamic speed

I'm using java with slick2d library and trying to move tile by tile with dynamic speed. I have tried a couple methods but none of them can move with dynamic speed between the tiles. Can someone help me with that and give some examples? edit: this…
-1
votes
2 answers

Adding CCSprite on Tiled tile properties

I'm trying to add a Sprite beside the player, but only when the Tile beside the player is NOT a Wall. I know that the Tiled tiles are working properly, as they do their job in this method: CGPoint p = CGPointMake(tileCoord.x, tileCoord.y - 1); if…
Oscar Apeland
  • 6,422
  • 7
  • 44
  • 92
-1
votes
1 answer

Windows 8 app tile clock with seconds

I want to develop an Windows 8 app that displays clock running with seconds in the tile. Any ideas?
Ramesh
  • 392
  • 1
  • 12
  • 39
-1
votes
2 answers

Unpin from start menu using c# in win8

I am developing a c# desktop application. We need to unpin our application tile based on number of conditions. this could happen anytime during the application life-cycle, and not only during installation. I saw this question on how to unpin a tile…
user844541
  • 2,868
  • 5
  • 32
  • 60
1 2 3
62
63