Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1)

Side by Side Diff: sky/sdk/example/game/lib/util.dart

Issue 1215413002: First pass on action animations for sprites (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 5 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
1 part of sprites;
2
3 num _clamp(num val, num min, num max) {
abarth-chromium 2015/07/01 22:20:53 https://api.dartlang.org/apidocs/channels/stable/d
4 if (val < min) return min;
5 if (val > max) return max;
6 return val;
7 }
OLDNEW
« sky/sdk/example/game/lib/sprite_box.dart ('K') | « sky/sdk/example/game/lib/sprites.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698