My first Game Jam
https://ldjam.com/events/ludum-dare/59/defend-the-radar
I finally finished the game for my first game jam!
I'm really worried and I hope I didn't mess up. I really want to sleep... Good luck to all!

https://ldjam.com/events/ludum-dare/59/defend-the-radar
I finally finished the game for my first game jam!
I'm really worried and I hope I didn't mess up. I really want to sleep... Good luck to all!

I ran into the problem that players find the game difficult and "waves of enemies overwhelm them."
And it makes me sad...
I tested the game on my friends, and they all passed the game on 3 attempts.
But you will have a Choice at the end of the game.
So what do you Decision, Player?


In the Defend The Radar game, I used several plugins for unity. And today I want to share one of them. Perhaps you will use it or do something of your own))
AssetsPlugin is designed to manage static game content.
*The main feature: use the key to get data that relates to a specific object. *
For example, the key is "hero", the data is "prefab", "sounds", "visual effects prefabs", "health", "speed" and more.
You can also store information about improvements, skills, or even the scripts themselves.
But keep in mind! That all this is used only for immutable data! (Not for Runtime)
An example of how to spawn an enemy
```csharp // Spawn Enemy var prefab = assetsService.Get(GameAsset.Enemy).As().prefab;
Instantiate(prefab, Vector3.zero, Quaternion.identity);
```
More details on GitHub
An example can be found in the sources of Defend The Radar.
I will post other plugins later.