コード例 #1
0
ファイル: Level.cs プロジェクト: darwin/silverstunts
 public bool EvalForeground()
 {
     Layer layer = new Layer(ForegroundSource, "foreground");
     foreground.Children.Clear();
     foreground.Children.Add(layer);
     return true;
 }
コード例 #2
0
ファイル: Level.cs プロジェクト: darwin/silverstunts
 public bool EvalBackground()
 {
     Layer layer = new Layer(BackgroundSource, "background");
     background.Children.Clear();
     background.Children.Add(layer);
     return true;
 }