This shows you the differences between two versions of the page.
Both sides previous revision Previous revision Next revision | Previous revision | ||
devlogs:22_5_2022 [2022/05/22 02:12] root |
devlogs:22_5_2022 [2023/10/19 15:25] (current) |
||
---|---|---|---|
Line 19: | Line 19: | ||
{{: | {{: | ||
+ | <wrap lo>click to watch the gif</ | ||
+ | |||
+ | The duck was so cool I had to get it working a little more... So I thouight I could get him moving around and quacking. I mostly copied the code from [[https:// | ||
+ | |||
+ | |||
+ | {{: | ||
+ | |||
+ | wow!((iphone)) | ||
+ | |||
+ | |||
+ | ==== The only kinda cool thing ==== | ||
+ | |||
+ | The only kinda cool thing I did on my own was get the duck to quack! there is no sfx yet but the way I got em quacking is Kinda clever? idk maybe | ||
+ | |||
+ | {{: | ||
+ | |||
+ | I basically have two animations for idle and run. One quacking and one not quacking. | ||
+ | |||
+ | {{: | ||
+ | |||
+ | The quacking animations are exactly 16 frames offset from their non quacking counter parts. So all I need to do in code is check if the player is holding the quack button | ||
+ | |||
+ | <code lua> | ||
+ | if btn(🅾️) then | ||
+ | | ||
+ | else | ||
+ | | ||
+ | end | ||
+ | </ | ||
+ | |||
+ | Then in the animation update a variable " | ||
+ | |||
+ | <code lua> | ||
+ | --quacking | ||
+ | local quack=0 | ||
+ | if plr.quacking then quack = 16 end | ||
+ | </ | ||
+ | |||
+ | .. and then in the actual animation | ||
+ | |||
+ | <code lua> | ||
+ | --running | ||
+ | elseif plr.running then | ||
+ | if plr.sp > run_end+quack then plr.sp = run_strt+quack | ||
+ | | ||
+ | end | ||
+ | if time()-plr.anim> | ||
+ | | ||
+ | | ||
+ | if plr.sp> | ||
+ | | ||
+ | end | ||
+ | end | ||
+ | |||
+ | --idle | ||
+ | else | ||
+ | if plr.sp < idle_strt+quack then plr.sp = idle_strt+quack end | ||
+ | if time()-plr.anim> | ||
+ | | ||
+ | | ||
+ | if plr.sp> | ||
+ | plr.sp=33+quack | ||
+ | end | ||
+ | end | ||
+ | end | ||
+ | end | ||
+ | </ | ||
+ | |||
+ | Yeaaa that was bascially my weekish and day. Hope I didn't forget my rust. Oof | ||
+ | |||
+ | btwdubs nglw/btc here is the link to the live cart.. [[https:// | ||
+ | |||
+ | ~~DISCUSSION~~ | ||
+ | |||
+ | |||
+ | |||
+ | |||
+ | |||