Beispiel #1
0
        public FSoftObjectPtrUnsafe(FSoftObjectPath assetRef)
        {
            objectPath = new TPersistentObjectPtr <FSoftObjectPathUnsafe>();
            objectPath.WeakPtr.Reset();
            objectPath.TagAtLastTest = 0;

            ObjectPath = assetRef;
        }
Beispiel #2
0
 public FSoftClassPath(UObject obj)
 {
     ObjectPath = new FSoftObjectPath(obj);
 }
Beispiel #3
0
 public FSoftClassPath(IntPtr softObjectPathPtr)
 {
     ObjectPath = new FSoftObjectPath(softObjectPathPtr);
 }
Beispiel #4
0
 public FSoftClassPath(FSoftObjectPathUnsafe softObjectPath)
 {
     ObjectPath = new FSoftObjectPath(softObjectPath);
 }
Beispiel #5
0
 public FSoftClassPath(FName assetPathName, string subPathString)
 {
     ObjectPath = new FSoftObjectPath(assetPathName, subPathString);
 }
Beispiel #6
0
 public FSoftClassPath(FSoftObjectPath objectPath)
 {
     ObjectPath = objectPath;
 }
Beispiel #7
0
 public FSoftObjectPathUnsafe(FSoftObjectPath softObjectPath)
     : this(softObjectPath.AssetPathName, softObjectPath.SubPathString)
 {
 }
Beispiel #8
0
 public FSoftObjectPtr(FSoftObjectPath softObjectPath)
 {
     this.softObjectPath = softObjectPath;
 }
Beispiel #9
0
 public TSoftObject(FSoftObjectPath softObject)
 {
     this.softObject = new FSoftObjectPtr(softObject);
 }
Beispiel #10
0
 public TSoftClass(FSoftObjectPath objectPath)
 {
     softObject = new FSoftObjectPtr(objectPath);
 }