zwischencommit

This commit is contained in:
2024-04-05 16:14:51 +02:00
parent 7f4c15bf1c
commit 3a4b2bca76
188 changed files with 527590 additions and 9 deletions

View File

@ -18,7 +18,7 @@ public class DeveloperNeeds : MonoBehaviour
}
public bool spawnNeed(string needName)
public GameObject spawnNeed(string needName)
{
GameObject spawnedNeed = null;
@ -44,8 +44,8 @@ public class DeveloperNeeds : MonoBehaviour
if (spawnedNeed != null)
{
spawnedNeed.transform.SetParent(transform, false);
return true;
return spawnedNeed;
}
return false;
return null;
}
}