CaveworldFlora.ClusterPlant_DevilTongue.Draw C# (CSharp) Method

Draw() public method

public Draw ( ) : void
return void
        public override void Draw()
        {
            if (this.flowerState != FlowerState.closed)
            {
                // Draw flower just under body texture.
                this.flowerMatrix.SetTRS(base.DrawPos + Altitudes.AltIncVect + new Vector3(0f, -0.1f, 0f), (0f).ToQuat(), this.flowerScale);
                Graphics.DrawMesh(MeshPool.plane10, this.flowerMatrix, flowerTexture, 0);
            }
        }
    }