can you codeo on unity with python code example
Example 1: How do i destroy a prefab without the error?
//You could try making a copy
public GameObject example;
GameObject exampleCopy = example
Instantiate(exampleCopy, //wherever you want)
Destroy(exampleCopy)
Example 2: can you do a join() in js without the commas
arr.join("")