Update all instances of instance() to instantiate()

This commit is contained in:
Hugo Locurcio
2022-11-29 16:58:44 +01:00
parent f133c1ce64
commit 509804650e
15 changed files with 35 additions and 35 deletions

View File

@@ -132,7 +132,7 @@ To get an instance of the scene, you have to use the
public void OnShoot()
{
Node bullet = _bulletScene.Instance();
Node bullet = _bulletScene.Instantiate();
AddChild(bullet);
}