This shows you the differences between two versions of the page.
Next revision | Previous revision | ||
devlogs:22_5_2022 [2022/05/22 01:58] root created |
devlogs:22_5_2022 [2023/10/19 15:25] (current) |
||
---|---|---|---|
Line 3: | Line 3: | ||
Um I got up to quiz 2 in rustlings!! yeet. Thats half way there lol | Um I got up to quiz 2 in rustlings!! yeet. Thats half way there lol | ||
- | [[https:// | + | [[https:// |
+ | |||
+ | ==== Funtasy consolee ==== | ||
+ | |||
+ | Then I got distracted.... Not sure why but I redownloaded [[https:// | ||
+ | |||
+ | |||
+ | ==== turns out not that hard ==== | ||
+ | |||
+ | |||
+ | |||
+ | {{: | ||
+ | |||
+ | yea not that hard I guess. Hes kinda cute. And he could also hold a gun and move right! ((not sure why)) | ||
+ | |||
+ | {{: | ||
+ | <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~~ | ||
+ | |||
+ | |||
+ | |||
+ | |||
+ | |||