| Index: sky/sdk/example/game/lib/node.dart
|
| diff --git a/sky/sdk/example/game/lib/node.dart b/sky/sdk/example/game/lib/node.dart
|
| index 51bb6239e01149bf56628caeb073dec73d3487fa..a1680b5fab28d1840d965ab5ef26333d2426af13 100644
|
| --- a/sky/sdk/example/game/lib/node.dart
|
| +++ b/sky/sdk/example/game/lib/node.dart
|
| @@ -59,6 +59,15 @@ class Node {
|
|
|
| List<Node>_children = [];
|
|
|
| + ActionController _actions;
|
| +
|
| + ActionController get actions {
|
| + if (_actions == null) {
|
| + _actions = new ActionController();
|
| + }
|
| + return _actions;
|
| + }
|
| +
|
| // Constructors
|
|
|
| /// Creates a new [Node] without any transformation.
|
|
|