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.

learn more… | top users | synonyms

0
votes
1answer
35 views

Tiled Map in Pygame

I'm working on my first game in Pygame and I want to make a Tiled Map. How would one properly go about do this? What I'm thinking of is just loading a tile and keep blitting it next to one another ...
0
votes
1answer
22 views

Incorrect sprite graphic is assigned to tiles

I'm now following a series of video tutorials on YouTube, to be specific a Game Programming tutorial by TheChernoProject. I got to episode 36, which is about rendering a level from tiles. I won't get ...
1
vote
0answers
6 views

Is there any solution for rotating the whole map of TileMap without Camera?

Is there any way to rotate the map of TileMap without camera??? not its I want to rotate map but UI like actor ??
0
votes
1answer
21 views

windows phone: open app from tile causing restart my app

Say my app has already up and running. If I hit Home key and click on the app's tile, I see that Application_Launching and "public MainPage()" is calling again. It looks like the app is restarted and ...
0
votes
2answers
27 views

a width and height 100% and text still at the bottom right - possible?

I'm creating tiled nav and what I need is for a to fill the tile, but the text from a still be located at bottom right position. However, when I make it width:100% and height:100% (in relation to li), ...
-1
votes
0answers
25 views

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 ...
1
vote
2answers
76 views

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 ...
1
vote
2answers
41 views

How can you stitch multiple heightmaps together to remove seems?

I am trying to write an algorithm (in c#) that will stitch two or more unrelated heightmaps together so there is no visible seem between the maps. Basically I want to mimic the functionality found on ...
0
votes
0answers
12 views

Terrain Chunk loading

https://dl.dropboxusercontent.com/u/63103279/Images/Chunk_loading.png I am working on a project that create mesh chunks of terrain generated with procedural noise, and i tried a couple of ways ...
-2
votes
0answers
50 views

How to remove a tile? [closed]

I have a little question ... I want to make a 2D platform game in java. So far, I managed to make the player, the shooting system, also movement, jumping, and the collision system with the map. I made ...
1
vote
0answers
38 views

Find corner cell of TileMap?

Problem when detecting corner cell of tile map??? private void getTiles(int startX, int startY, int endX, int endY, Array<Rectangle> tiles) { TiledMapTileLayer ...
0
votes
0answers
87 views

Windows 8 Metro Tiles not working in theme despite code being correct

Set up Win 8 Metro Tiles as instructed on Microsofts - http://www.buildmypinnedsite.com but they just don't work for me. My site is http://themixtapesite.com Here is my header code with the tags in ...
1
vote
0answers
39 views

How to lookup screen-bounded tile indices in a rotated tilemap?

Normally, an Axis-aligned (rotation = 0) tilemap is easy to iterate through the visible tiles on the screen. But how do you "cull" or filter the tile indexes when the entire tilemap is rotated? ...
0
votes
0answers
47 views

Java - implement 2d Tile-based Lighting [closed]

I am making a 2d minecraft/Terraria clone in java without libraries, and ive been having no luck with the lighting. i would like it to be block by block lighting. ive tried: Flood fill Algorithims ...
-1
votes
0answers
38 views

Force a DIV to auto adjust page height and tile vertically

I have tried many combinations of heights, positions and overflows but I cannot get this background image to tile vertically. If I set overflow to hidden then it tiles successfully but my scrollbar ...
3
votes
3answers
228 views

Implementing fluid JS tile interface

I'm building a photography website, and I want to create a nice "tiled" interface, which will look similar to the interface on new version MSN Money Now (note - the new version of the website can be ...
0
votes
0answers
57 views

Getting gaps between tiled textures with libgdx

So im using libgdx, making a platformer. Im using square tiles for the platforms but when they are drawn some of them have gaps between them. When I zoom in/out or move the camera around the gaps move ...
0
votes
0answers
195 views

Twitter Bootstrap - create independant tiles

Alright, this is a growing challenge for me. I am trying to create a fluid layout with fluid-sized tiles on the screen. I was thinking on a desktop there would be 4 tiles per row and 1 per row on ...
0
votes
0answers
23 views

tilemap flickering on update

Im trying to draw a game map to a canvas using a JSON file created by tiled map editor. I believe im nearly there, but i have one problem. if i put the call to load the map in my update function i ...
0
votes
0answers
45 views

what is the advantage of Tiledmaps?

What is the real advantage of a TiledMap? I do have the same output if i take a background layer png and a forground layer png like i render them with a TiledMapRender but i do not have any Problems ...
0
votes
1answer
159 views

Osmdroid offline file

I have an osmdroid map, and i want to load offline tiles from either MOBAC's osmdroid zip or gemf file. I looked into it and everywhere i go it says just put it in sdcard/osmdroid. But it doesnt work, ...
0
votes
0answers
49 views

Java - Tile based lighting issue

I have an issue where my tile based lighting code is not functioning properly going up and left. It works properly going right and downward (see image), but only goes one tile to the left/up and ...
0
votes
0answers
80 views

Tiled Map Collisions?

I've been working on my own game for a couple weeks now and have gotten stuck on collisions. The game map is tiled (32*32 tiles) and I'm not sure where I should start for player - tile collisions. I ...
0
votes
1answer
47 views

Android - Horizontally tiled hexagons

I am trying to create a horizontal scrollable view which is populated by hexagon tiles. As far as I know, there aren't any prefabs for this in Android, so I would have to create the custom views ...
0
votes
1answer
76 views

wp7 app tile effect

i am creating a windows phone application with tile effects, but somewhere i confused using/creating tiles. i just confused between application & secondary tile, what's the difference between? ...
0
votes
0answers
46 views

Windows 8 tile/toast template preview

I'm creating a web application that allows end-users to create the Widows 8 tile/toast notifications. There's a drop-down-list which contains a list of pre-defined template (tile/toast). End-users ...
0
votes
1answer
63 views

Accessing an element in a 2D array

I'm writing a platform game in c++ and using a tiled map to build the world. The map contains values which are assigned tiles: eg of a 2D array: int map[4][4]={ {1, 1, 1, 1}, {1, 0, 0, 1}, ...
3
votes
1answer
102 views

Centring Sprite or moving camera? C++/Opengl

I'm self learning C++ and playing around 2D tile mapping. I have been reading through this scrolling post here, which is based on this tiling tutorial. Using the above tutorial and some help from ...
1
vote
1answer
346 views

Reading JSON Tiled map editor file and displaying to canvas

Im following this this tutorial to be able to load json map files created by tiled map editor in my javascript/canvas game. ive got to the point where i have implemented my own kind of version, and ...
0
votes
1answer
132 views

C++ 2D Array Map for Tiling Output Inverted

I have created a 2D array that represents a map for my tiles to be placed: int sMap[12][20] = { {1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1}, {1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, ...
2
votes
1answer
64 views

Console error when drawing to canvas

I have a main javascript file which is trying to draw a tilemap to a canvas for a game, and i have an included file which actually draws the maps etc, but im getting this error in firebug: ...
0
votes
0answers
63 views

Drawing an Isometric image split into layers

I've seen quite a bit of questions regarding how to draw isometric tiles, and most all point at being drawn back to front, top down. However I'm trying to find a way to prevent clipping with a single ...
2
votes
1answer
90 views

Actionscript 2 large tile-based maps creating lag

I'm wondering what the best way to go about creating large, tile-based maps in flash with actionscript 2 would be. With my current code, any maps over 35x35 (1225 movieclips) start to lag. The maps ...
0
votes
1answer
238 views

C# - Multiple animated gifs in picturebox

I have been searching around and have found many ways to tile images in a picturebox (drawing to an image, then displaying that image in the picturebox), and also ways to get animated gifs working on ...
2
votes
1answer
387 views

Creating Windows 8 Start screen groups and tiles (not only for exes) with Inno Setup

We are using Inno Setup to build installers for our ActiveX grid control. With the release of Win8, two new questions arose: Is it possible to create our own new group of tiles on the Start screen ...
0
votes
2answers
113 views

Scrollable tile views in iOS (iPhone)

I am not the most experienced iOS developer and so far only had some simple designs I worked with, but now we plan to build views based on tiles, which I have no idea how to approach, yet. I tried ...
0
votes
2answers
194 views

On a hexagonal grid: selecting tiles within a given radius of a selection point.

I'm developing a simple 2D board game using hexagonal tile maps, I've read several articles (including the gamedev one's, which are linked every time there's a question on hexagonal tiles) on how to ...
1
vote
1answer
127 views

2D Tiled Game Optimization in Java

I'm working on a 2d top down game in pure Java and until now I've got a noise mapping system that works with chunks of tiles (and entities) just like Minecraft. The way I store tiles is by creating a ...
4
votes
1answer
102 views

Unity3D: Strange 1 pix white line between tiles on my 2D game

My game have a tiled 2d map. This is a scene screenshot: I found when I move the camera vertically, there are strange white lines randomly appeared between randomly tiles, See: I don't know ...
0
votes
0answers
58 views

Mahjong based tile perspective

I'm building a simple Mahjong based game in Lua. I'm adding a simple perspective to my tiles on the bottom-left edges. I can successfully generate the level in proper tile order if tiles don't touch ...
0
votes
0answers
112 views

Callisto Live Tile control stretch Horizontally

The LiveTile will not stretch Horizontally. I added it to a ItemTemplate of a GridView and it just centers and no matter what I do it will not stretch. <callisto:LiveTile ...
0
votes
0answers
35 views

Textures rendering in only specific methods

I discovered a problem recently with my 2D game code. I'm using LWJGL and have a method that creates a specified tile at a given place. It only works in my main class though, in my main rendering ...
0
votes
0answers
65 views

Interacting with Tile Based Game from arrays

So I have an array, something like [0,0,0,0,0,0,0, 0,1,1,1,1,1,0, 0,1,1,1,1,1,0, 0,1,1,1,1,1,0, 0,1,1,1,1,1,0, 0,1,1,1,1,1,0, 0,0,0,0,0,0,0] to build a room with walls (zeros) and floor ...
0
votes
2answers
114 views

Tile collision with sliding along walls

I've got a ball that I can move around on a map consisting of equally sized tiles. The player should not be able to walk over the tiles that are darker and have a black border. I've got a ...
0
votes
2answers
83 views

LWJGL glTranslate doing weird things

this is a big problem I have been running into. I am trying to render multiple tiles using glTranslate but when I call my draw function with the x, y coordinates the tiles are spaced weirdly(I don't ...
-1
votes
1answer
248 views

Windows 8 app tile clock with seconds [closed]

I want to develop an Windows 8 app that displays clock running with seconds in the tile. Any ideas?
0
votes
0answers
169 views

Opengl texturing 2D tile map

I am having a little problem loading and applying textures on a 2D tile map. I am drawing my map like this - for (int x = 0; x < m_SceneManager->getWorld()->TILEX; x++) { //loop through ...
0
votes
1answer
66 views

how to make a map in xna 4 with matrix from text file

I am trying to make a map by reading a text file line by line (because i cant find how to do that word by word). So I make a map00.txt that looks like "33000000111" (every number is one row, first 2 ...
0
votes
0answers
81 views

html5 tile canvas shape mouse over

I am working at leaflet project like giscloude.I have lot of shape and because of the improve map performances i use lats of canvas like http://editor.giscloud.com/map/16594/germany-6000000-features . ...
0
votes
1answer
128 views

LibGDX TiledMap doesn't render

I've started to move over from slick2d to Libgdx, and I'm trying to get .tmx files to work with libgdx. I followed the TileMap tutorials on the libgdx wiki but I can't seem to get my .tmx file to ...

1 2 3 4 5 6