41 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			XML
		
	
	
	
	
	
			
		
		
	
	
			41 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			XML
		
	
	
	
	
	
| <?xml version="1.0" encoding="utf-8" ?>
 | |
| <Sprite name="Player" 
 | |
| 	    anchorX="0.5" anchorY="0.95">
 | |
| 
 | |
| 	<State name="Idle right">
 | |
| 		<Frame tileSet="tilesets/PlayerTiles.png" cell="0" w="1" h="2" duration="1" />
 | |
| 	</State>
 | |
| 	
 | |
| 	<State name="Idle up">
 | |
| 		<Frame tileSet="tilesets/PlayerTiles.png" cell="2" w="1" h="2" duration="1" />
 | |
| 	</State>
 | |
| 	
 | |
| 	<State name="Idle left">
 | |
| 		<Frame tileSet="tilesets/PlayerTiles.png" cell="4" w="1" h="2" duration="1" />
 | |
| 	</State>
 | |
| 	
 | |
| 	<State name="Idle down">
 | |
| 		<Frame tileSet="tilesets/PlayerTiles.png" cell="6" w="1" h="2" duration="1" />
 | |
| 	</State>
 | |
| 	
 | |
| 	<State name="Walking right">
 | |
| 		<Frame tileSet="tilesets/PlayerTiles.png" cell="0" w="1" h="2" duration="0.2" />
 | |
| 		<Frame tileSet="tilesets/PlayerTiles.png" cell="1" w="1" h="2" duration="0.2" />
 | |
| 	</State>
 | |
| 	
 | |
| 	<State name="Walking up">
 | |
| 		<Frame tileSet="tilesets/PlayerTiles.png" cell="2" w="1" h="2" duration="0.2" />
 | |
| 		<Frame tileSet="tilesets/PlayerTiles.png" cell="3" w="1" h="2" duration="0.2" />
 | |
| 	</State>
 | |
| 	
 | |
| 	<State name="Walking left">
 | |
| 		<Frame tileSet="tilesets/PlayerTiles.png" cell="4" w="1" h="2" duration="0.2" />
 | |
| 		<Frame tileSet="tilesets/PlayerTiles.png" cell="5" w="1" h="2" duration="0.2" />
 | |
| 	</State>
 | |
| 	
 | |
| 	<State name="Walking down">
 | |
| 		<Frame tileSet="tilesets/PlayerTiles.png" cell="6" w="1" h="2" duration="0.2" />
 | |
| 		<Frame tileSet="tilesets/PlayerTiles.png" cell="7" w="1" h="2" duration="0.2" />
 | |
| 	</State>
 | |
| 		
 | |
| </Sprite> |