整理ecs框架

This commit is contained in:
yhh
2020-07-22 20:07:14 +08:00
parent 6b8569b0b5
commit 5b8f414a45
31 changed files with 1908 additions and 1239 deletions

View File

@@ -1,5 +1,5 @@
class PostProcessor {
public enable: boolean;
public enabled: boolean;
public effect: egret.Filter;
public scene: Scene;
public shape: egret.Shape;
@@ -23,7 +23,7 @@ class PostProcessor {
"}";
constructor(effect: egret.Filter = null){
this.enable = true;
this.enabled = true;
this.effect = effect;
}