Method RenameSequentially
- Namespace
- Gamelogic.Extensions.Editor
- Assembly
- Gamelogic.Extensions.Editor.dll
RenameSequentially(int)
Renames the currently selected objects using their first object's name as the base name, starting from the given index.
public static void RenameSequentially(int start)
Parameters
startintThe starting number for the sequence.
RenameSequentially(IEnumerable<Object>, string, int)
Renames the given objects sequentially using the provided base name and starting index.
public static void RenameSequentially(IEnumerable<Object> objects, string baseName, int start)
Parameters
objectsIEnumerable<Object>The objects to rename.
baseNamestringThe name prefix for all renamed objects.
startintThe starting number for the sequence.