User not logged in
Bug in version 3.0.2

Quote from vbgamestudio on 1 May 2023, 11:05In orthographic perspective, the "Character setting" tab is available. It allows you to configure character scaling in your scene.
There is a bug, which has been fixed in version 3.0.3.
Open the MenuCharResizeEditor script found in the Assets/2.5dToolKit/Editor folder. Between lines 31 and 32, just above:
Vector3 CharRot = EditorGUILayout.Vector3Field("Rotation", nav.character.transform.rotation.eulerAngles);
insert:
EditorGUI.BeginChangeCheck();
Save your changes.
In orthographic perspective, the "Character setting" tab is available. It allows you to configure character scaling in your scene.
There is a bug, which has been fixed in version 3.0.3.
Open the MenuCharResizeEditor script found in the Assets/2.5dToolKit/Editor folder. Between lines 31 and 32, just above:
Vector3 CharRot = EditorGUILayout.Vector3Field("Rotation", nav.character.transform.rotation.eulerAngles);
insert:
EditorGUI.BeginChangeCheck();
Save your changes.