예제 #1
0
        public Smudge(CPos pos, BatchRenderable renderable, int dissolveDuration, bool instantDissolve = false)
        {
            this.renderable = renderable;
            Position        = pos;
            renderable.SetPosition(Position);

            this.dissolveDuration = dissolveDuration;
            currentDissolve       = dissolveDuration;

            IsDissolving = instantDissolve;
        }
예제 #2
0
 public PhysicsObject(CPos pos, BatchRenderable renderable) : base(pos, renderable)
 {
 }