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

Unified Diff: sky/examples/game/main.dart

Issue 1149183004: Sky example game enhancements, adds preloading of images and adds transform modes to SpriteBox (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Fixes setting parameter with sugar Created 5 years, 7 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « sky/examples/game/lib/sprites.dart ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sky/examples/game/main.dart
diff --git a/sky/examples/game/main.dart b/sky/examples/game/main.dart
index 4a584eb2d46037e4e07471b7902ba77efbfe3ee1..9d54b06a0a0f63bd2071e7fdc27336d880dc86bb 100644
--- a/sky/examples/game/main.dart
+++ b/sky/examples/game/main.dart
@@ -6,6 +6,15 @@ import 'package:sky/framework/app.dart';
AppView app;
void main() {
+ // Load images
+ new ImageMap([
+ "https://raw.githubusercontent.com/slembcke/GalacticGuardian.spritebuilder/GDC/Packages/SpriteBuilder%20Resources.sbpack/resources-auto/BurnTexture.png",
+ "https://raw.githubusercontent.com/slembcke/GalacticGuardian.spritebuilder/GDC/Packages/SpriteBuilder%20Resources.sbpack/Sprites/resources-auto/asteroid_big_002.png",
+ ],
+ allLoaded);
+}
+
+void allLoaded(ImageMap loader) {
// Create a new app with the sprite box that contains our game world
- app = new AppView(new SpriteBox(new GameWorld(1024.0, 1024.0),SpriteBoxTransformMode.letterbox));
+ app = new AppView(new SpriteBox(new GameWorld(loader),SpriteBoxTransformMode.letterbox));
}
« no previous file with comments | « sky/examples/game/lib/sprites.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698