09-23-2025, 09:33 AM
Hi,
There is no such option, but you can modify the code that does the renaming, either to avoid the renaming or change the naming pattern. To do so, head to the the file ToolBuddy\Assets\Curvy\Scripts\CG\CGModule.ResourceNamer.cs
then modify the method Rename(...)
If you are unfamiliar with coding, just replace this:
with this:
I hope this helped.
Have a nice day.
There is no such option, but you can modify the code that does the renaming, either to avoid the renaming or change the naming pattern. To do so, head to the the file ToolBuddy\Assets\Curvy\Scripts\CG\CGModule.ResourceNamer.cs
then modify the method Rename(...)
If you are unfamiliar with coding, just replace this:
Code:
public void Rename([NotNull] string resourceName, [NotNull] Component resource, int index)
{
string newName = GetResourceName(
resourceName,
index
);
//This check is necessary because when CurvyGenerator.ForceFrequentUpdates is true, this bug happens
//[FIXED] When a scene has input spline path or input spline shape module, renaming objects from the hierarchy or though the F2 shortcut does not work
if (resource.name != newName)
resource.name = newName;
}with this:
Code:
public void Rename([NotNull] string resourceName, [NotNull] Component resource, int index)
{
}I hope this helped.
Have a nice day.
Available for freelance work, feel free to reach out: toolbuddy.net
Please consider leaving a review for Curvy, this helps immensely. Thank you.
Please consider leaving a review for Curvy, this helps immensely. Thank you.

