Remove transparent property. (2)

This commit is contained in:
2022-11-19 01:10:00 +08:00
parent 3b65dbea5b
commit a7dfaa4558

View File

@@ -55,7 +55,6 @@ namespace Cryville.Crtr.Components {
SubmitProperty("head", new PropOp.String(v => head.FrameName = v));
SubmitProperty("body", new PropOp.String(v => body.FrameName = v));
SubmitProperty("tail", new PropOp.String(v => tail.FrameName = v));
SubmitProperty("transparent", new PropOp.Boolean(v => transparent = v));
SubmitProperty("shape", new op_set_shape(this));
}
@@ -93,7 +92,6 @@ namespace Cryville.Crtr.Components {
public SpriteInfo body = new SpriteInfo();
public SpriteInfo tail = new SpriteInfo();
public bool transparent;
List<Vector3> vertices;
List<float> lengths;
float sumLength = 0;