rename all serialize methods to sgserialize in kismet modules due to compilation warnings
This commit is contained in:
@@ -202,7 +202,7 @@ FString USGBasicHandModelKismetLibrary::ToString_bLengthsOnly(const USGBasicHand
|
||||
return BasicHandModel->ToString(bLengthsOnly);
|
||||
}
|
||||
|
||||
FString USGBasicHandModelKismetLibrary::Serialize(const USGBasicHandModel* BasicHandModel)
|
||||
FString USGBasicHandModelKismetLibrary::SGSerialize(const USGBasicHandModel* BasicHandModel)
|
||||
{
|
||||
return BasicHandModel->SGSerialize();
|
||||
}
|
||||
+1
-1
@@ -151,7 +151,7 @@ bool USGHandInterpolatorKismetLibrary::Equals(const USGHandInterpolator* A, cons
|
||||
return A->Equals(B);
|
||||
}
|
||||
|
||||
FString USGHandInterpolatorKismetLibrary::Serialize(const USGHandInterpolator* HandInterpolator)
|
||||
FString USGHandInterpolatorKismetLibrary::SGSerialize(const USGHandInterpolator* HandInterpolator)
|
||||
{
|
||||
return HandInterpolator->SGSerialize();
|
||||
}
|
||||
@@ -164,7 +164,7 @@ FString USGHandPoseKismetLibrary::ToString(const USGHandPose* HandPose, const bo
|
||||
return HandPose->ToString(bShortFormat);
|
||||
}
|
||||
|
||||
FString USGHandPoseKismetLibrary::Serialize(const USGHandPose* HandPose)
|
||||
FString USGHandPoseKismetLibrary::SGSerialize(const USGHandPose* HandPose)
|
||||
{
|
||||
return HandPose->SGSerialize();
|
||||
}
|
||||
@@ -134,7 +134,7 @@ void USGHandProfileKismetLibrary::Reset(USGHandProfile* HandProfile)
|
||||
HandProfile->Reset();
|
||||
}
|
||||
|
||||
FString USGHandProfileKismetLibrary::Serialize(const USGHandProfile* HandProfile)
|
||||
FString USGHandProfileKismetLibrary::SGSerialize(const USGHandProfile* HandProfile)
|
||||
{
|
||||
return HandProfile->SGSerialize();
|
||||
}
|
||||
+1
-1
@@ -143,7 +143,7 @@ FString USGInterpolationSetKismetLibrary::ToString_bLimits(const USGInterpolatio
|
||||
return InterpolationSet->ToString(bLimits);
|
||||
}
|
||||
|
||||
FString USGInterpolationSetKismetLibrary::Serialize(const USGInterpolationSet* InterpolationSet)
|
||||
FString USGInterpolationSetKismetLibrary::SGSerialize(const USGInterpolationSet* InterpolationSet)
|
||||
{
|
||||
return InterpolationSet->SGSerialize();
|
||||
}
|
||||
+1
-1
@@ -71,7 +71,7 @@ void USGNovaGloveHandProfileKismetLibrary::Reset(USGNovaGloveHandProfile* NovaGl
|
||||
NovaGloveHandProfile->Reset();
|
||||
}
|
||||
|
||||
FString USGNovaGloveHandProfileKismetLibrary::Serialize(const USGNovaGloveHandProfile* NovaGloveHandProfile)
|
||||
FString USGNovaGloveHandProfileKismetLibrary::SGSerialize(const USGNovaGloveHandProfile* NovaGloveHandProfile)
|
||||
{
|
||||
return NovaGloveHandProfile->SGSerialize();
|
||||
}
|
||||
@@ -111,7 +111,7 @@ FString USGNovaGloveInfoKismetLibrary::ToString(const USGNovaGloveInfo* NovaGlov
|
||||
return NovaGloveInfo->ToString();
|
||||
}
|
||||
|
||||
FString USGNovaGloveInfoKismetLibrary::Serialize(const USGNovaGloveInfo* NovaGloveInfo)
|
||||
FString USGNovaGloveInfoKismetLibrary::SGSerialize(const USGNovaGloveInfo* NovaGloveInfo)
|
||||
{
|
||||
return NovaGloveInfo->SGSerialize();
|
||||
}
|
||||
+1
-1
@@ -109,7 +109,7 @@ FString USGNovaGloveSensorDataKismetLibrary::ToString(const USGNovaGloveSensorDa
|
||||
return NovaGloveSensorData->ToString();
|
||||
}
|
||||
|
||||
FString USGNovaGloveSensorDataKismetLibrary::Serialize(const USGNovaGloveSensorData* NovaGloveSensorData)
|
||||
FString USGNovaGloveSensorDataKismetLibrary::SGSerialize(const USGNovaGloveSensorData* NovaGloveSensorData)
|
||||
{
|
||||
return NovaGloveSensorData->SGSerialize();
|
||||
}
|
||||
+1
-1
@@ -107,7 +107,7 @@ void USGSenseGloveHandProfileKismetLibrary::Reset(USGSenseGloveHandProfile* Sens
|
||||
SenseGloveHandProfile->Reset();
|
||||
}
|
||||
|
||||
FString USGSenseGloveHandProfileKismetLibrary::Serialize(const USGSenseGloveHandProfile* SenseGloveHandProfile)
|
||||
FString USGSenseGloveHandProfileKismetLibrary::SGSerialize(const USGSenseGloveHandProfile* SenseGloveHandProfile)
|
||||
{
|
||||
return SenseGloveHandProfile->SGSerialize();
|
||||
}
|
||||
@@ -173,7 +173,7 @@ FString USGSenseGloveInfoKismetLibrary::ToString_bShortNotation(const USGSenseGl
|
||||
return SenseGloveInfo->ToString(bShortNotation);
|
||||
}
|
||||
|
||||
FString USGSenseGloveInfoKismetLibrary::Serialize(const USGSenseGloveInfo* SenseGloveInfo)
|
||||
FString USGSenseGloveInfoKismetLibrary::SGSerialize(const USGSenseGloveInfo* SenseGloveInfo)
|
||||
{
|
||||
return SenseGloveInfo->SGSerialize();
|
||||
}
|
||||
@@ -122,7 +122,7 @@ FString USGSenseGlovePoseKismetLibrary::ToString(const USGSenseGlovePose* SenseG
|
||||
return SenseGlovePose->ToString(bShortFormat);
|
||||
}
|
||||
|
||||
FString USGSenseGlovePoseKismetLibrary::Serialize(const USGSenseGlovePose* SenseGlovePose)
|
||||
FString USGSenseGlovePoseKismetLibrary::SGSerialize(const USGSenseGlovePose* SenseGlovePose)
|
||||
{
|
||||
return SenseGlovePose->SGSerialize();
|
||||
}
|
||||
+1
-1
@@ -112,7 +112,7 @@ FString USGSenseGloveSensorDataKismetLibrary::ToString(const USGSenseGloveSensor
|
||||
return SenseGloveSensorData->ToString();
|
||||
}
|
||||
|
||||
FString USGSenseGloveSensorDataKismetLibrary::Serialize(const USGSenseGloveSensorData* SenseGloveSensorData)
|
||||
FString USGSenseGloveSensorDataKismetLibrary::SGSerialize(const USGSenseGloveSensorData* SenseGloveSensorData)
|
||||
{
|
||||
return SenseGloveSensorData->SGSerialize();
|
||||
}
|
||||
@@ -113,7 +113,7 @@ FString USGSensorRangeKismetLibrary::ToString(const USGSensorRange* SensorRange,
|
||||
return SensorRange->ToString(bYOnly);
|
||||
}
|
||||
|
||||
FString USGSensorRangeKismetLibrary::Serialize(const USGSensorRange* SensorRange)
|
||||
FString USGSensorRangeKismetLibrary::SGSerialize(const USGSensorRange* SensorRange)
|
||||
{
|
||||
return SensorRange->SGSerialize();
|
||||
}
|
||||
@@ -159,6 +159,6 @@ public:
|
||||
UFUNCTION(BlueprintPure, DisplayName="To String", Category="SenseGlove | Core | Kinematics | Basic Hand Model")
|
||||
static FString ToString_bLengthsOnly(const USGBasicHandModel* BasicHandModel, bool bLengthsOnly);
|
||||
|
||||
UFUNCTION(BlueprintPure, Category="SenseGlove | Core | Kinematics | Basic Hand Model")
|
||||
static FString Serialize(const USGBasicHandModel* BasicHandModel);
|
||||
UFUNCTION(BlueprintPure, DisplayName="Serialize", Category="SenseGlove | Core | Kinematics | Basic Hand Model")
|
||||
static FString SGSerialize(const USGBasicHandModel* BasicHandModel);
|
||||
};
|
||||
@@ -136,6 +136,6 @@ public:
|
||||
UFUNCTION(BlueprintPure, Category="SenseGlove | Core | Kinematics | Hand Interpolator")
|
||||
static bool Equals(const USGHandInterpolator* A, const USGHandInterpolator* B);
|
||||
|
||||
UFUNCTION(BlueprintPure, Category="SenseGlove | Core | Kinematics | Hand Interpolator")
|
||||
static FString Serialize(const USGHandInterpolator* HandInterpolator);
|
||||
UFUNCTION(BlueprintPure, DisplayName="Serialize", Category="SenseGlove | Core | Kinematics | Hand Interpolator")
|
||||
static FString SGSerialize(const USGHandInterpolator* HandInterpolator);
|
||||
};
|
||||
@@ -140,6 +140,6 @@ public:
|
||||
UFUNCTION(BlueprintPure, Category="SenseGlove | Core | Hand Pose")
|
||||
static FString ToString(const USGHandPose* HandPose, bool bShortFormat = false);
|
||||
|
||||
UFUNCTION(BlueprintPure, Category="SenseGlove | Core | Hand Pose")
|
||||
static FString Serialize(const USGHandPose* HandPose);
|
||||
UFUNCTION(BlueprintPure, DisplayName="Serialize", Category="SenseGlove | Core | Hand Pose")
|
||||
static FString SGSerialize(const USGHandPose* HandPose);
|
||||
};
|
||||
@@ -112,6 +112,6 @@ public:
|
||||
UFUNCTION(BlueprintCallable, Category="SenseGlove | Core | Hand Profile")
|
||||
static void Reset(UPARAM(ref) USGHandProfile* HandProfile);
|
||||
|
||||
UFUNCTION(BlueprintPure, Category="SenseGlove | Core | Hand Profile")
|
||||
static FString Serialize(const USGHandProfile* HandProfile);
|
||||
UFUNCTION(BlueprintPure, DisplayName="Serialize", Category="SenseGlove | Core | Hand Profile")
|
||||
static FString SGSerialize(const USGHandProfile* HandProfile);
|
||||
};
|
||||
@@ -114,6 +114,6 @@ public:
|
||||
UFUNCTION(BlueprintPure, DisplayName="To String", Category="SenseGlove | Core | Kinematics | Interpolation Set")
|
||||
static FString ToString_bLimits(const USGInterpolationSet* InterpolationSet, bool bLimits);
|
||||
|
||||
UFUNCTION(BlueprintPure, Category="SenseGlove | Core | Kinematics | Interpolation Set")
|
||||
static FString Serialize(const USGInterpolationSet* InterpolationSet);
|
||||
UFUNCTION(BlueprintPure, DisplayName="Serialize", Category="SenseGlove | Core | Kinematics | Interpolation Set")
|
||||
static FString SGSerialize(const USGInterpolationSet* InterpolationSet);
|
||||
};
|
||||
+2
-2
@@ -71,6 +71,6 @@ public:
|
||||
UFUNCTION(BlueprintCallable, Category="SenseGlove | Core | Nova | Nova Glove Hand Profile")
|
||||
static void Reset(UPARAM(ref) USGNovaGloveHandProfile* NovaGloveHandProfile);
|
||||
|
||||
UFUNCTION(BlueprintPure, Category="SenseGlove | Core | Nova | Nova Glove Hand Profile")
|
||||
static FString Serialize(const USGNovaGloveHandProfile* NovaGloveHandProfile);
|
||||
UFUNCTION(BlueprintPure, DisplayName="Serialize", Category="SenseGlove | Core | Nova | Nova Glove Hand Profile")
|
||||
static FString SGSerialize(const USGNovaGloveHandProfile* NovaGloveHandProfile);
|
||||
};
|
||||
@@ -94,6 +94,6 @@ public:
|
||||
UFUNCTION(BlueprintPure, Category="SenseGlove | Core | Nova | Nova Glove Info")
|
||||
static FString ToString(const USGNovaGloveInfo* NovaGloveInfo);
|
||||
|
||||
UFUNCTION(BlueprintPure, Category="SenseGlove | Core | Nova | Nova Glove Info")
|
||||
static FString Serialize(const USGNovaGloveInfo* NovaGloveInfo);
|
||||
UFUNCTION(BlueprintPure, DisplayName="Serialize", Category="SenseGlove | Core | Nova | Nova Glove Info")
|
||||
static FString SGSerialize(const USGNovaGloveInfo* NovaGloveInfo);
|
||||
};
|
||||
+2
-2
@@ -95,6 +95,6 @@ public:
|
||||
UFUNCTION(BlueprintPure, Category="SenseGlove | Core | Nova | Nova Glove Sensor Data")
|
||||
static FString ToString(const USGNovaGloveSensorData* NovaGloveSensorData);
|
||||
|
||||
UFUNCTION(BlueprintPure, Category="SenseGlove | Core | Nova | Nova Glove Sensor Data")
|
||||
static FString Serialize(const USGNovaGloveSensorData* NovaGloveSensorData);
|
||||
UFUNCTION(BlueprintPure, DisplayName="Serialize", Category="SenseGlove | Core | Nova | Nova Glove Sensor Data")
|
||||
static FString SGSerialize(const USGNovaGloveSensorData* NovaGloveSensorData);
|
||||
};
|
||||
+2
-2
@@ -92,6 +92,6 @@ public:
|
||||
UFUNCTION(BlueprintCallable, Category="SenseGlove | Core | SG | Sense Glove Hand Profile")
|
||||
static void Reset(UPARAM(ref) USGSenseGloveHandProfile* SenseGloveHandProfile);
|
||||
|
||||
UFUNCTION(BlueprintPure, Category="SenseGlove | Core | SG | Sense Glove Hand Profile")
|
||||
static FString Serialize(const USGSenseGloveHandProfile* SenseGloveHandProfile);
|
||||
UFUNCTION(BlueprintPure, DisplayName="Serialize", Category="SenseGlove | Core | SG | Sense Glove Hand Profile")
|
||||
static FString SGSerialize(const USGSenseGloveHandProfile* SenseGloveHandProfile);
|
||||
};
|
||||
@@ -128,6 +128,6 @@ public:
|
||||
UFUNCTION(BlueprintPure, DisplayName="To String", Category="SenseGlove | Core | SG | Sense Glove Info")
|
||||
static FString ToString_bShortNotation(const USGSenseGloveInfo* SenseGloveInfo, bool bShortNotation);
|
||||
|
||||
UFUNCTION(BlueprintPure, Category="SenseGlove | Core | SG | Sense Glove Info")
|
||||
static FString Serialize(const USGSenseGloveInfo* SenseGloveInfo);
|
||||
UFUNCTION(BlueprintPure, DisplayName="Serialize", Category="SenseGlove | Core | SG | Sense Glove Info")
|
||||
static FString SGSerialize(const USGSenseGloveInfo* SenseGloveInfo);
|
||||
};
|
||||
@@ -105,6 +105,6 @@ public:
|
||||
UFUNCTION(BlueprintPure, Category="SenseGlove | Core | SG | Sense Glove Pose")
|
||||
static FString ToString(const USGSenseGlovePose* SenseGlovePose, bool bShortFormat = false);
|
||||
|
||||
UFUNCTION(BlueprintPure, Category="SenseGlove | Core | SG | Sense Glove Pose")
|
||||
static FString Serialize(const USGSenseGlovePose* SenseGlovePose);
|
||||
UFUNCTION(BlueprintPure, DisplayName="Serialize", Category="SenseGlove | Core | SG | Sense Glove Pose")
|
||||
static FString SGSerialize(const USGSenseGlovePose* SenseGlovePose);
|
||||
};
|
||||
+2
-2
@@ -96,6 +96,6 @@ public:
|
||||
UFUNCTION(BlueprintPure, Category="SenseGlove | Core | SG | Sense Glove Sensor Data")
|
||||
static FString ToString(const USGSenseGloveSensorData* SenseGloveSensorData);
|
||||
|
||||
UFUNCTION(BlueprintPure, Category="SenseGlove | Core | SG | Sense Glove Sensor Data")
|
||||
static FString Serialize(const USGSenseGloveSensorData* SenseGloveSensorData);
|
||||
UFUNCTION(BlueprintPure, DisplayName="Serialize", Category="SenseGlove | Core | SG | Sense Glove Sensor Data")
|
||||
static FString SGSerialize(const USGSenseGloveSensorData* SenseGloveSensorData);
|
||||
};
|
||||
@@ -97,6 +97,6 @@ public:
|
||||
UFUNCTION(BlueprintPure, Category="SenseGlove | Core | Calibration | Sensor Range")
|
||||
static FString ToString(const USGSensorRange* SensorRange, bool bYOnly = true);
|
||||
|
||||
UFUNCTION(BlueprintPure, Category="SenseGlove | Core | Calibration | Sensor Range")
|
||||
static FString Serialize(const USGSensorRange* SensorRange);
|
||||
UFUNCTION(BlueprintPure, DisplayName="Serialize", Category="SenseGlove | Core | Calibration | Sensor Range")
|
||||
static FString SGSerialize(const USGSensorRange* SensorRange);
|
||||
};
|
||||
Reference in New Issue
Block a user