A downloadable project for Windows

Download NowName your own price

Here's the slides for my presentation Make it Wiggle!

Just for you to .. play around with? I don't know what you wanna do with this but it's probably better it's available for download than not? :D

<3


Code snippets:

moving stars:
pos = vec2( sin(time), cos(time) );

pushing trees:
rot = sin(time) * wiggle;
wiggle *= 0.95;

Sprite stretching:
scale = vec2( x, y );
x = lerp( x, 1, 0.1 );
y = lerp( y, 1, 0.1 );


I gave an alternate version of this talk at Blekinge Tekniska College in Karlshamn. "Presentation CCF JAM.zip" is the version of the game(the whole unity project) that I used for that presentation!

StatusPrototype
CategoryOther
PlatformsWindows
Rating
Rated 5.0 out of 5 stars
(1 total ratings)
AuthorDitto

Download

Download NowName your own price

Click download now to get access to the following files:

MakeItWiggle.zip 10 MB
Presentation CCF JAM.zip 749 kB

Comments

Log in with itch.io to leave a comment.

Great talk!

Cool, talk. Super inspireing. Makes me want to get back to making games so bad.