コード例 #1
0
 public override System.Collections.Generic.Queue <Moonfish.Tags.BlamPointer> ReadFields(System.IO.BinaryReader binaryReader)
 {
     System.Collections.Generic.Queue <Moonfish.Tags.BlamPointer> pointerQueue = new System.Collections.Generic.Queue <Moonfish.Tags.BlamPointer>(base.ReadFields(binaryReader));
     this.ReferenceFrameIndex = binaryReader.ReadInt16();
     this.ProjectionAxis      = binaryReader.ReadByte();
     this.EnvironmentObjectNodesProjectionSign = ((ProjectionSign)(binaryReader.ReadByte()));
     return(pointerQueue);
 }
コード例 #2
0
 public EnvironmentObjectNodes(BinaryReader binaryReader)
 {
     this.referenceFrameIndex = binaryReader.ReadInt16();
     this.projectionAxis = binaryReader.ReadByte();
     this.projectionSign = (ProjectionSign)binaryReader.ReadByte();
 }
コード例 #3
0
 internal EnvironmentObjectNodesBase(BinaryReader binaryReader)
 {
     this.referenceFrameIndex = binaryReader.ReadInt16();
     this.projectionAxis      = binaryReader.ReadByte();
     this.projectionSign      = (ProjectionSign)binaryReader.ReadByte();
 }