Alexandria.Engines.Unreal.Bounds.Read C# (CSharp) Метод

Read() публичный статический Метод

Read the Bounds from the reader.
public static Read ( BinaryReader reader ) : Bounds
reader System.IO.BinaryReader The to read the from.
Результат Bounds
        public static Bounds Read(BinaryReader reader)
        {
            return new Bounds() {
                Box = new Box3f(reader.ReadVector3f(), reader.ReadVector3f()),
                Valid = reader.ReadByte() != 0
            };
        }

Usage Example

Пример #1
0
 public override object Read(object target, Package package, BinaryReader reader, long end)
 {
     return(Bounds.Read(reader));
 }
Bounds