Michael Praschl
Michael Praschl
When generating C# code, the output begins with var result = result = new Whatever {};
You can replace the calls at the bottom ```cs // Create prefab UnityEngine.Object prefab = PrefabUtility.CreateEmptyPrefab("Assets/" + resultGO.name + ".prefab"); PrefabUtility.ReplacePrefab(resultGO, prefab, ReplacePrefabOptions.ConnectToPrefab); ``` with ```cs PrefabUtility.SaveAsPrefabAsset(resultGO, "Assets/" + resultGO.name...
This commit adds the possibility to give each option a number, like "1. Yes sure" "2. Maybe" "3. No definitly not" The numbers are generated automatically for available options, when...
- [X] Tests for the changes have been added (for bug fixes / features) - [X] Does it pass all existing unit tests without modification? - [X] CHANGELOG.md has been...