diff --git a/Source/SenseGloveCoreKismet/Private/SGCoreKismet/SGBasicHandModelKismetLibrary.cpp b/Source/SenseGloveCoreKismet/Private/SGCoreKismet/SGBasicHandModelKismetLibrary.cpp index 709a68d2..823e6abc 100644 --- a/Source/SenseGloveCoreKismet/Private/SGCoreKismet/SGBasicHandModelKismetLibrary.cpp +++ b/Source/SenseGloveCoreKismet/Private/SGCoreKismet/SGBasicHandModelKismetLibrary.cpp @@ -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(); } \ No newline at end of file diff --git a/Source/SenseGloveCoreKismet/Private/SGCoreKismet/SGHandInterpolatorKismetLibrary.cpp b/Source/SenseGloveCoreKismet/Private/SGCoreKismet/SGHandInterpolatorKismetLibrary.cpp index e597c427..508703e7 100644 --- a/Source/SenseGloveCoreKismet/Private/SGCoreKismet/SGHandInterpolatorKismetLibrary.cpp +++ b/Source/SenseGloveCoreKismet/Private/SGCoreKismet/SGHandInterpolatorKismetLibrary.cpp @@ -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(); } \ No newline at end of file diff --git a/Source/SenseGloveCoreKismet/Private/SGCoreKismet/SGHandPoseKismetLibrary.cpp b/Source/SenseGloveCoreKismet/Private/SGCoreKismet/SGHandPoseKismetLibrary.cpp index 0faf592e..2d70e5cb 100644 --- a/Source/SenseGloveCoreKismet/Private/SGCoreKismet/SGHandPoseKismetLibrary.cpp +++ b/Source/SenseGloveCoreKismet/Private/SGCoreKismet/SGHandPoseKismetLibrary.cpp @@ -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(); } \ No newline at end of file diff --git a/Source/SenseGloveCoreKismet/Private/SGCoreKismet/SGHandProfileKismetLibrary.cpp b/Source/SenseGloveCoreKismet/Private/SGCoreKismet/SGHandProfileKismetLibrary.cpp index 25d8ac96..2f000c7c 100644 --- a/Source/SenseGloveCoreKismet/Private/SGCoreKismet/SGHandProfileKismetLibrary.cpp +++ b/Source/SenseGloveCoreKismet/Private/SGCoreKismet/SGHandProfileKismetLibrary.cpp @@ -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(); } \ No newline at end of file diff --git a/Source/SenseGloveCoreKismet/Private/SGCoreKismet/SGInterpolationSetKismetLibrary.cpp b/Source/SenseGloveCoreKismet/Private/SGCoreKismet/SGInterpolationSetKismetLibrary.cpp index cd29f793..7d713a09 100644 --- a/Source/SenseGloveCoreKismet/Private/SGCoreKismet/SGInterpolationSetKismetLibrary.cpp +++ b/Source/SenseGloveCoreKismet/Private/SGCoreKismet/SGInterpolationSetKismetLibrary.cpp @@ -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(); } \ No newline at end of file diff --git a/Source/SenseGloveCoreKismet/Private/SGCoreKismet/SGNovaGloveHandProfileKismetLibrary.cpp b/Source/SenseGloveCoreKismet/Private/SGCoreKismet/SGNovaGloveHandProfileKismetLibrary.cpp index f152752e..050458c5 100644 --- a/Source/SenseGloveCoreKismet/Private/SGCoreKismet/SGNovaGloveHandProfileKismetLibrary.cpp +++ b/Source/SenseGloveCoreKismet/Private/SGCoreKismet/SGNovaGloveHandProfileKismetLibrary.cpp @@ -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(); } \ No newline at end of file diff --git a/Source/SenseGloveCoreKismet/Private/SGCoreKismet/SGNovaGloveInfoKismetLibrary.cpp b/Source/SenseGloveCoreKismet/Private/SGCoreKismet/SGNovaGloveInfoKismetLibrary.cpp index 1e903f0d..d862a1a1 100644 --- a/Source/SenseGloveCoreKismet/Private/SGCoreKismet/SGNovaGloveInfoKismetLibrary.cpp +++ b/Source/SenseGloveCoreKismet/Private/SGCoreKismet/SGNovaGloveInfoKismetLibrary.cpp @@ -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(); } \ No newline at end of file diff --git a/Source/SenseGloveCoreKismet/Private/SGCoreKismet/SGNovaGloveSensorDataKismetLibrary.cpp b/Source/SenseGloveCoreKismet/Private/SGCoreKismet/SGNovaGloveSensorDataKismetLibrary.cpp index b1dbd78a..93835303 100644 --- a/Source/SenseGloveCoreKismet/Private/SGCoreKismet/SGNovaGloveSensorDataKismetLibrary.cpp +++ b/Source/SenseGloveCoreKismet/Private/SGCoreKismet/SGNovaGloveSensorDataKismetLibrary.cpp @@ -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(); } \ No newline at end of file diff --git a/Source/SenseGloveCoreKismet/Private/SGCoreKismet/SGSenseGloveHandProfileKismetLibrary.cpp b/Source/SenseGloveCoreKismet/Private/SGCoreKismet/SGSenseGloveHandProfileKismetLibrary.cpp index aecd8603..3bfb3f22 100644 --- a/Source/SenseGloveCoreKismet/Private/SGCoreKismet/SGSenseGloveHandProfileKismetLibrary.cpp +++ b/Source/SenseGloveCoreKismet/Private/SGCoreKismet/SGSenseGloveHandProfileKismetLibrary.cpp @@ -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(); } \ No newline at end of file diff --git a/Source/SenseGloveCoreKismet/Private/SGCoreKismet/SGSenseGloveInfoKismetLibrary.cpp b/Source/SenseGloveCoreKismet/Private/SGCoreKismet/SGSenseGloveInfoKismetLibrary.cpp index 5d6d3622..d12db5e3 100644 --- a/Source/SenseGloveCoreKismet/Private/SGCoreKismet/SGSenseGloveInfoKismetLibrary.cpp +++ b/Source/SenseGloveCoreKismet/Private/SGCoreKismet/SGSenseGloveInfoKismetLibrary.cpp @@ -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(); } \ No newline at end of file diff --git a/Source/SenseGloveCoreKismet/Private/SGCoreKismet/SGSenseGlovePoseKismetLibrary.cpp b/Source/SenseGloveCoreKismet/Private/SGCoreKismet/SGSenseGlovePoseKismetLibrary.cpp index 47cc6e30..eb3a56fb 100644 --- a/Source/SenseGloveCoreKismet/Private/SGCoreKismet/SGSenseGlovePoseKismetLibrary.cpp +++ b/Source/SenseGloveCoreKismet/Private/SGCoreKismet/SGSenseGlovePoseKismetLibrary.cpp @@ -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(); } \ No newline at end of file diff --git a/Source/SenseGloveCoreKismet/Private/SGCoreKismet/SGSenseGloveSensorDataKismetLibrary.cpp b/Source/SenseGloveCoreKismet/Private/SGCoreKismet/SGSenseGloveSensorDataKismetLibrary.cpp index e6cf453b..5de05f7e 100644 --- a/Source/SenseGloveCoreKismet/Private/SGCoreKismet/SGSenseGloveSensorDataKismetLibrary.cpp +++ b/Source/SenseGloveCoreKismet/Private/SGCoreKismet/SGSenseGloveSensorDataKismetLibrary.cpp @@ -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(); } \ No newline at end of file diff --git a/Source/SenseGloveCoreKismet/Private/SGCoreKismet/SGSensorRangeKismetLibrary.cpp b/Source/SenseGloveCoreKismet/Private/SGCoreKismet/SGSensorRangeKismetLibrary.cpp index 3f84e2df..69239bbc 100644 --- a/Source/SenseGloveCoreKismet/Private/SGCoreKismet/SGSensorRangeKismetLibrary.cpp +++ b/Source/SenseGloveCoreKismet/Private/SGCoreKismet/SGSensorRangeKismetLibrary.cpp @@ -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(); } \ No newline at end of file diff --git a/Source/SenseGloveCoreKismet/Public/SGCoreKismet/SGBasicHandModelKismetLibrary.h b/Source/SenseGloveCoreKismet/Public/SGCoreKismet/SGBasicHandModelKismetLibrary.h index aec330e1..5b128a19 100644 --- a/Source/SenseGloveCoreKismet/Public/SGCoreKismet/SGBasicHandModelKismetLibrary.h +++ b/Source/SenseGloveCoreKismet/Public/SGCoreKismet/SGBasicHandModelKismetLibrary.h @@ -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); }; \ No newline at end of file diff --git a/Source/SenseGloveCoreKismet/Public/SGCoreKismet/SGHandInterpolatorKismetLibrary.h b/Source/SenseGloveCoreKismet/Public/SGCoreKismet/SGHandInterpolatorKismetLibrary.h index 57ba9296..d986f911 100644 --- a/Source/SenseGloveCoreKismet/Public/SGCoreKismet/SGHandInterpolatorKismetLibrary.h +++ b/Source/SenseGloveCoreKismet/Public/SGCoreKismet/SGHandInterpolatorKismetLibrary.h @@ -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); }; \ No newline at end of file diff --git a/Source/SenseGloveCoreKismet/Public/SGCoreKismet/SGHandPoseKismetLibrary.h b/Source/SenseGloveCoreKismet/Public/SGCoreKismet/SGHandPoseKismetLibrary.h index 92ebea14..ca63ec4b 100644 --- a/Source/SenseGloveCoreKismet/Public/SGCoreKismet/SGHandPoseKismetLibrary.h +++ b/Source/SenseGloveCoreKismet/Public/SGCoreKismet/SGHandPoseKismetLibrary.h @@ -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); }; \ No newline at end of file diff --git a/Source/SenseGloveCoreKismet/Public/SGCoreKismet/SGHandProfileKismetLibrary.h b/Source/SenseGloveCoreKismet/Public/SGCoreKismet/SGHandProfileKismetLibrary.h index 9024e130..0c84ed19 100644 --- a/Source/SenseGloveCoreKismet/Public/SGCoreKismet/SGHandProfileKismetLibrary.h +++ b/Source/SenseGloveCoreKismet/Public/SGCoreKismet/SGHandProfileKismetLibrary.h @@ -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); }; \ No newline at end of file diff --git a/Source/SenseGloveCoreKismet/Public/SGCoreKismet/SGInterpolationSetKismetLibrary.h b/Source/SenseGloveCoreKismet/Public/SGCoreKismet/SGInterpolationSetKismetLibrary.h index 6a3f85ad..7ed0ce11 100644 --- a/Source/SenseGloveCoreKismet/Public/SGCoreKismet/SGInterpolationSetKismetLibrary.h +++ b/Source/SenseGloveCoreKismet/Public/SGCoreKismet/SGInterpolationSetKismetLibrary.h @@ -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); }; \ No newline at end of file diff --git a/Source/SenseGloveCoreKismet/Public/SGCoreKismet/SGNovaGloveHandProfileKismetLibrary.h b/Source/SenseGloveCoreKismet/Public/SGCoreKismet/SGNovaGloveHandProfileKismetLibrary.h index 8b9bfc9f..45d93eb5 100644 --- a/Source/SenseGloveCoreKismet/Public/SGCoreKismet/SGNovaGloveHandProfileKismetLibrary.h +++ b/Source/SenseGloveCoreKismet/Public/SGCoreKismet/SGNovaGloveHandProfileKismetLibrary.h @@ -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); }; \ No newline at end of file diff --git a/Source/SenseGloveCoreKismet/Public/SGCoreKismet/SGNovaGloveInfoKismetLibrary.h b/Source/SenseGloveCoreKismet/Public/SGCoreKismet/SGNovaGloveInfoKismetLibrary.h index 37d36203..48964fad 100644 --- a/Source/SenseGloveCoreKismet/Public/SGCoreKismet/SGNovaGloveInfoKismetLibrary.h +++ b/Source/SenseGloveCoreKismet/Public/SGCoreKismet/SGNovaGloveInfoKismetLibrary.h @@ -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); }; \ No newline at end of file diff --git a/Source/SenseGloveCoreKismet/Public/SGCoreKismet/SGNovaGloveSensorDataKismetLibrary.h b/Source/SenseGloveCoreKismet/Public/SGCoreKismet/SGNovaGloveSensorDataKismetLibrary.h index d106aff0..9b5aa9ec 100644 --- a/Source/SenseGloveCoreKismet/Public/SGCoreKismet/SGNovaGloveSensorDataKismetLibrary.h +++ b/Source/SenseGloveCoreKismet/Public/SGCoreKismet/SGNovaGloveSensorDataKismetLibrary.h @@ -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); }; \ No newline at end of file diff --git a/Source/SenseGloveCoreKismet/Public/SGCoreKismet/SGSenseGloveHandProfileKismetLibrary.h b/Source/SenseGloveCoreKismet/Public/SGCoreKismet/SGSenseGloveHandProfileKismetLibrary.h index a83ec3f2..d96265cb 100644 --- a/Source/SenseGloveCoreKismet/Public/SGCoreKismet/SGSenseGloveHandProfileKismetLibrary.h +++ b/Source/SenseGloveCoreKismet/Public/SGCoreKismet/SGSenseGloveHandProfileKismetLibrary.h @@ -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); }; \ No newline at end of file diff --git a/Source/SenseGloveCoreKismet/Public/SGCoreKismet/SGSenseGloveInfoKismetLibrary.h b/Source/SenseGloveCoreKismet/Public/SGCoreKismet/SGSenseGloveInfoKismetLibrary.h index 568ffa19..c0b38402 100644 --- a/Source/SenseGloveCoreKismet/Public/SGCoreKismet/SGSenseGloveInfoKismetLibrary.h +++ b/Source/SenseGloveCoreKismet/Public/SGCoreKismet/SGSenseGloveInfoKismetLibrary.h @@ -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); }; \ No newline at end of file diff --git a/Source/SenseGloveCoreKismet/Public/SGCoreKismet/SGSenseGlovePoseKismetLibrary.h b/Source/SenseGloveCoreKismet/Public/SGCoreKismet/SGSenseGlovePoseKismetLibrary.h index f3718bcd..05661a64 100644 --- a/Source/SenseGloveCoreKismet/Public/SGCoreKismet/SGSenseGlovePoseKismetLibrary.h +++ b/Source/SenseGloveCoreKismet/Public/SGCoreKismet/SGSenseGlovePoseKismetLibrary.h @@ -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); }; \ No newline at end of file diff --git a/Source/SenseGloveCoreKismet/Public/SGCoreKismet/SGSenseGloveSensorDataKismetLibrary.h b/Source/SenseGloveCoreKismet/Public/SGCoreKismet/SGSenseGloveSensorDataKismetLibrary.h index 71711c65..0a48dbc3 100644 --- a/Source/SenseGloveCoreKismet/Public/SGCoreKismet/SGSenseGloveSensorDataKismetLibrary.h +++ b/Source/SenseGloveCoreKismet/Public/SGCoreKismet/SGSenseGloveSensorDataKismetLibrary.h @@ -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); }; \ No newline at end of file diff --git a/Source/SenseGloveCoreKismet/Public/SGCoreKismet/SGSensorRangeKismetLibrary.h b/Source/SenseGloveCoreKismet/Public/SGCoreKismet/SGSensorRangeKismetLibrary.h index 8e271ecd..aea5cedf 100644 --- a/Source/SenseGloveCoreKismet/Public/SGCoreKismet/SGSensorRangeKismetLibrary.h +++ b/Source/SenseGloveCoreKismet/Public/SGCoreKismet/SGSensorRangeKismetLibrary.h @@ -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); }; \ No newline at end of file