コード例 #1
0
ファイル: Chunk.cs プロジェクト: andywhite37/NCraft
 public virtual void LoadFromTag(CompoundTag tag)
 {
     Id = tag.GetString(ID);
     Pos = new Pos(tag.GetListTag(Pos.POS));
     Motion = new Motion(tag.GetListTag(Motion.MOTION));
     Rotation = new Rotation(tag.GetListTag(Rotation.ROTATION));
     FallDistance = tag.GetFloat(FALL_DISTANCE);
     Fire = tag.GetShort(FIRE);
     Air = tag.GetShort(AIR);
     OnGround = tag.GetByte(ON_GROUND);
 }
コード例 #2
0
ファイル: Level.cs プロジェクト: andywhite37/NCraft
 public void LoadFromTag(CompoundTag tag)
 {
     Motion = new Motion(tag.GetListTag(Motion.MOTION));
     OnGround = tag.GetByte(ON_GROUND);
     HurtTime = tag.GetShort(HURT_TIME);
     Health = tag.GetShort(HEALTH);
     Dimension = tag.GetInt(DIMENSION);
     Air = tag.GetShort(AIR);
     Inventory = new Inventory(tag.GetListTag(Inventory.INVENTORY));
     Pos = new Pos(tag.GetListTag(Pos.POS));
     AttackTime = tag.GetShort(ATTACK_TIME);
     Fire = tag.GetShort(FIRE);
     FallDistance = tag.GetFloat(FALL_DISTANCE);
     Rotation = new Rotation(tag.GetListTag(Rotation.ROTATION));
     Score = tag.GetInt(SCORE);
     DeathTime = tag.GetShort(DEATH_TIME);
 }