Answers for "unity specify name when instantiating"

C#
1

unity instantiate with name

// (You don't need to instantiate an additional object, just set the 'name' attribute)
GameObject go = Instantiate(this.speedBlock);
go.name = "SpeedBlock";
Posted by: Guest on January-20-2021

Code answers related to "unity specify name when instantiating"

C# Answers by Framework

Browse Popular Code Answers by Language