entity.MetaEditor2.Bitmask.BitsToBool C# (CSharp) Method

BitsToBool() private method

private BitsToBool ( ) : void
return void
        private void BitsToBool()
        {
            uint tempANDInt = 1;
            uint tempvalue = Convert.ToUInt32(this.value);
            for (int counter = 0; counter < this.bitCount; counter++)
            {
                this.Bits[counter] = (tempANDInt & tempvalue) == tempANDInt ? true : false;
                tempANDInt <<= 1;
            }
        }