C# 클래스 Alexandria.Engines.Unreal.Core.RootObject

The absolute root of an Unreal object hierarchy.
파일 보기 프로젝트 열기: Burton-Radons/Alexandria 1 사용 예제들

Private Properties

프로퍼티 타입 설명

공개 메소드들

메소드 설명
CallReader ( Type readerType, RootObject target, Package package, BinaryReader reader, long end ) : object

Use the DataProcessor of the given type to read properties into the object.

GetReaderSingleton ( Type readerType ) : DataProcessor

Call the initializer on a DataProcessor-derived Type and return it, cached.

Load ( BinaryReader reader, long end ) : RootObject

Load this object's data from the BinaryReader using the current Alexandria.Engines.Unreal.State in State.

Load ( Package package, BinaryReader reader, long end ) : RootObject

Load this object's data from the BinaryReader.

메소드 상세

CallReader() 공개 정적인 메소드

Use the DataProcessor of the given type to read properties into the object.
public static CallReader ( Type readerType, RootObject target, Package package, BinaryReader reader, long end ) : object
readerType System.Type The of the object to read.
target RootObject The object to read into.
package Package The this should be placed in.
reader System.IO.BinaryReader The for reading the object.
end long An index just past the end of the 's data.
리턴 object

GetReaderSingleton() 공개 정적인 메소드

Call the initializer on a DataProcessor-derived Type and return it, cached.
public static GetReaderSingleton ( Type readerType ) : DataProcessor
readerType System.Type The -derived to construct.
리턴 DataProcessor

Load() 공개 메소드

Load this object's data from the BinaryReader using the current Alexandria.Engines.Unreal.State in State.
public Load ( BinaryReader reader, long end ) : RootObject
reader System.IO.BinaryReader
end long
리턴 RootObject

Load() 공개 메소드

Load this object's data from the BinaryReader.
or are null.
public Load ( Package package, BinaryReader reader, long end ) : RootObject
package Package The that this object is within.
reader System.IO.BinaryReader The to use.
end long The offset within the stream of the end of the object's data.
리턴 RootObject