Hello Guest

Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - Logon

Pages: 1 [2]
16
Support / Tilemap Sprite Size
« on: February 19, 2013, 07:01:09 am »
I have a problem where a tilemap 100x100 32x32 turns up really small compared to another sprite in my scene

The Scale on the tilemap is x 32 y 32 z 0
The scale on my charactersprite is 1 , 1 , 1

In pixels the tiles should be 32x32 and the character be around 50x50ish but if you look at the editor window you can see the the tiles are very small because the charactersprite is pixel perfect in the game window.

Any ideas?
(Sorry for the bad english)

17
Support / Re: I'm at a loss here. How to move character sprite?
« on: February 19, 2013, 06:55:31 am »
Put a script on the character sprite

add this code in update

if(Input.GetKey(KeyCode.W))
{
      this.transform.position += new vector3(0,2f,0);
}


Pages: 1 [2]