本文整理汇总了C#中VRage.getLongList方法的典型用法代码示例。如果您正苦于以下问题:C# VRage.getLongList方法的具体用法?C# VRage.getLongList怎么用?C# VRage.getLongList使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类VRage
的用法示例。
在下文中一共展示了VRage.getLongList方法的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: ObservingEntity
// Byte Deserialization
public ObservingEntity(VRage.ByteStream stream)
: base(stream)
{
List<long> entitiesViewing = stream.getLongList();
foreach (long id in entitiesViewing) {
EntitiesViewing.Add(id, null);
}
LastObservingTime = stream.getDateTime();
LastObservingPosition = stream.getVector3D();
//Log.Trace("Deserialized LastObservingTime of " + LastObservingTime, "stream ctr");
//Log.Trace("Deserialized LastObservingPosition of " + LastObservingPosition, "stream ctr");
//Log.Trace("Deserialized ViewDistance of " + ViewDistance, "stream ctr");
}
示例2: RevealedEntity
// Byte Deserialization
public RevealedEntity(VRage.ByteStream stream)
: base(stream)
{
// Nearly everything is available from the ingame Entity
IsObserved = stream.getBoolean();
IsRevealBlocked = stream.getBoolean();
List<long> entitiesViewedByList = stream.getLongList();
foreach (long id in entitiesViewedByList) {
EntitiesViewedBy.Add(id, null);
}
RevealedAt = stream.getDateTime();
MovedSinceIsInAsteroidCheck = true;
Log.ClassName = "GP.Concealment.World.Entities.RevealedEntity";
Log.Trace("Finished RevealedEntity deserialize constructor", "ctr");
}
示例3: RemoveFromByteStream
public void RemoveFromByteStream(VRage.ByteStream stream)
{
base.RemoveFromByteStream(stream);
SpawnOwners = stream.getLongList();
DisplayName = stream.getString();
BigOwners = stream.getLongList();
}
示例4: deserialize
public virtual void deserialize(VRage.ByteStream stream)
{
MsgType = (TYPE)stream.getUShort();
DestType = (DEST_TYPE)stream.getUShort();
Destination = stream.getLongList();
}
示例5: ConcealedGrid
// Byte Deserialization
public ConcealedGrid(VRage.ByteStream stream)
: base(stream)
{
SpawnOwners = stream.getLongList();
BigOwners = stream.getLongList();
}