User Tools

Site Tools


en:guides:beginners:changing_direction

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
en:guides:beginners:changing_direction [2018/02/13 20:47 (7 years ago)] – ↷ Page moved from guides:beginners:changing_direction to en:guides:beginners:changing_direction iarwainen:guides:beginners:changing_direction [2024/11/18 04:27 (5 months ago)] (current) – Highlights sausage
Line 5: Line 5:
 There are many ways to do this. The more correct way would be to create flipped animation graphics and hook up a bunch more animations and links. But we will do it the easiest way possible. When pressing the left key, we will flip the entire hero around in code: There are many ways to do this. The more correct way would be to create flipped animation graphics and hook up a bunch more animations and links. But we will do it the easiest way possible. When pressing the left key, we will flip the entire hero around in code:
  
-<code=cpp>+<code=cpp [highlight_lines_extra="1,2,6,8,10,12,13,15,16,17"]>
 orxVECTOR flipLeft = { -2, 2, 1 }; orxVECTOR flipLeft = { -2, 2, 1 };
 orxVECTOR flipRight = { 2, 2, 1 }; orxVECTOR flipRight = { 2, 2, 1 };
Line 28: Line 28:
 The orxObject_SetScale function is being used here instead of the usual orxObject_SetFlip. The latter does not flip child objects or body positions, but scale does. We will need this later when our hero has a child gun object. The orxObject_SetScale function is being used here instead of the usual orxObject_SetFlip. The latter does not flip child objects or body positions, but scale does. We will need this later when our hero has a child gun object.
  
-Notice that we need to restore the flip when the right key is pressed.+Compile and Run. We can run left and right and the flipping is correct. But... there is a huge gap when the hero switches directions.
  
-Finally, ensure the pivot for our hero's graphic and animation set are both centered so that when we flip left and right, there won't be any issues with the physically body shifting incorrectly:+Therefore we need to ensure the pivot for our hero's graphic and animation set are both centered so that when we flip left and right, there won't be any issues with the physically body shifting incorrectly:
  
-<code=ini>+<code=ini [highlight_lines_extra="5,15"]>
 [HeroGraphic] [HeroGraphic]
 Texture        = soldier_full.png Texture        = soldier_full.png
Line 40: Line 40:
  
 [HeroAnimationSet] [HeroAnimationSet]
-Texture = soldier_full.png +Texture    = soldier_full.png 
-FrameSize = (32, 32, 0) +FrameSize  = (32, 32, 0) 
-HeroRun = 6 +HeroRun    = 6 
-HeroIdle = 1 +HeroIdle   = 1 
-StartAnim = HeroIdle+StartAnim  = HeroIdle
 HeroIdle-> = HeroIdle # .HeroRun HeroIdle-> = HeroIdle # .HeroRun
-HeroRun-> = HeroRun # HeroIdle +HeroRun->  = HeroRun # HeroIdle 
-Pivot          = center+Pivot      = center
 </code> </code>
  
  
-Compile and run. We can run left and right. That should be working well, our hero can now run left and right, or stand idle either left or right.+Compile and run. That should be working much better. Our hero can run left and right, or stand idle either left or right.
  
 ---- ----
  
-Next, [[guides:beginners:shooting_and_spawners|Part 13 - getting our hero to shoot]].+Next, [[en:guides:beginners:shooting_and_spawners|Part 13 - getting our hero to shoot]].
  
-{{section>guides:beginners:toc&noheader&nofooter&noeditbutton}}+{{section>en:guides:beginners:toc&noheader&nofooter&noeditbutton}}
en/guides/beginners/changing_direction.1518583670.txt.gz · Last modified: 2018/02/14 00:47 (7 years ago) (external edit)