コード例 #1
0
 protected EditorPallet(EditorScene scene)
 {
     _editor = scene;
 }
コード例 #2
0
 public EditorScene(EditorScene parent)
     : this()
 {
     _parent = parent;
 }
コード例 #3
0
 public EditorPallet(EditorScene scene, float width, float height)
     : this(scene)
 {
     _localBounds = new AABB(0, 0, width, height);
 }