Index: sky/examples/game/lib/game_world.dart |
diff --git a/sky/examples/game/lib/game_world.dart b/sky/examples/game/lib/game_world.dart |
index e066db98dda89e86fdd3db1bfa84cde4740bb3e7..2101512992d37770000f09a082979f9e426a8c68 100644 |
--- a/sky/examples/game/lib/game_world.dart |
+++ b/sky/examples/game/lib/game_world.dart |
@@ -66,6 +66,8 @@ class GameWorld extends TransformNode { |
SpriteNode sprt = new SpriteNode.withImage(_image); |
sprt.width = radius*2; |
sprt.height = radius*2; |
+ sprt.colorOverlay = new Color(0x33ff0000); |
+ sprt.transferMode = TransferMode.plusMode; |
body.userData = sprt; |
this.children.add(sprt); |
} |