entity.MetaEditor2.Ident.Poke C# (CSharp) Method

Poke() public method

public Poke ( ) : void
return void
        public void Poke()
        {
            // We only poke the ident, not the type
            uint Address = (uint)(this.offsetInMap + map.SelectedMeta.magic + (doesHaveTagType ? 4 : 0));
            this.identInt32 = map.Functions.ForMeta.FindByNameAndTagType(this.tagType, this.tagName);
            HaloMap.RealTimeHalo.RTH_Imports.Poke(Address, (uint)this.identInt32, 32);
        }