Table of Contents

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

start int

The 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

objects IEnumerable<Object>

The objects to rename.

baseName string

The name prefix for all renamed objects.

start int

The starting number for the sequence.