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:32] root |
devlogs:22_5_2022 [2023/10/19 15:25] (current) |
||
---|---|---|---|
Line 24: | Line 24: | ||
- | {{: | + | {{: |
wow!((iphone)) | wow!((iphone)) | ||
Line 32: | Line 32: | ||
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 | 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. | I basically have two animations for idle and run. One quacking and one not quacking. | ||
Line 47: | Line 49: | ||
</ | </ | ||
- | Then all I do in the animation update | + | Then in the animation update a variable |
<code lua> | <code lua> | ||
Line 59: | Line 61: | ||
<code lua> | <code lua> | ||
--running | --running | ||
- | elseif plr.running then | + | elseif plr.running then |
- | if plr.sp > run_end+quack then plr.sp = run_strt+quack | + | if plr.sp > run_end+quack then plr.sp = run_strt+quack |
- | elseif plr.sp < run_strt+quack then plr.sp = run_strt+quack | + | |
- | end | + | end |
- | if time()-plr.anim> | + | if time()-plr.anim> |
- | plr.anim = time() | + | |
- | plr.sp+=1 | + | |
- | if plr.sp> | + | if plr.sp> |
- | plr.sp=1+quack | + | |
- | end | + | end |
- | end | + | end |
- | + | --idle | |
- | --idle | + | else |
- | else | + | if plr.sp < idle_strt+quack then plr.sp = idle_strt+quack end |
- | | + | if time()-plr.anim> |
- | if time()-plr.anim> | + | |
- | plr.anim=time() | + | |
- | plr.sp+=1 | + | if plr.sp> |
- | if plr.sp> | + | plr.sp=33+quack |
- | plr.sp=33+quack | + | end |
- | end | + | end |
- | end | + | 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~~ | ||