Terraria.Player.ToggleLight C# (CSharp) 메소드

ToggleLight() 공개 메소드

public ToggleLight ( ) : void
리턴 void
        public void ToggleLight()
        {
            this.hideMisc[1] = !this.hideMisc[1];
            if (!this.hideMisc[1])
                return;
            this.ClearBuff(this.miscEquips[1].buffType);
            if (this.miscEquips[1].buffType != 27)
                return;
            this.ClearBuff(102);
            this.ClearBuff(101);
        }
Player