what i do after read python code example
Example 1: How do I see which version of Swift I'm using
// Open the Terminal and write:
swift -version
Example 2: what to do in python when you get pygame.Surface object is not callable
screen.blit(playerImg, (x, y))
you need to remeber the commas
Example 3: 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)