├── .github └── FUNDING.yml ├── Assets ├── Prefabs.meta ├── Prefabs │ ├── Enemy Green.prefab │ ├── Enemy Green.prefab.meta │ ├── Enemy Red.prefab │ ├── Enemy Red.prefab.meta │ ├── Enemy Yellow.prefab │ └── Enemy Yellow.prefab.meta ├── Scripts.meta ├── Scripts │ ├── EnemySpawner.cs │ └── EnemySpawner.cs.meta ├── scene.unity └── scene.unity.meta ├── LICENCE └── README.md /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | custom: ['https://paypal.me/hamzaherbou'] 2 | -------------------------------------------------------------------------------- /Assets/Prefabs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herbou/Unity_SpawnerWithProbabilities/HEAD/Assets/Prefabs.meta -------------------------------------------------------------------------------- /Assets/Prefabs/Enemy Green.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herbou/Unity_SpawnerWithProbabilities/HEAD/Assets/Prefabs/Enemy Green.prefab -------------------------------------------------------------------------------- /Assets/Prefabs/Enemy Green.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herbou/Unity_SpawnerWithProbabilities/HEAD/Assets/Prefabs/Enemy Green.prefab.meta -------------------------------------------------------------------------------- /Assets/Prefabs/Enemy Red.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herbou/Unity_SpawnerWithProbabilities/HEAD/Assets/Prefabs/Enemy Red.prefab -------------------------------------------------------------------------------- /Assets/Prefabs/Enemy Red.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herbou/Unity_SpawnerWithProbabilities/HEAD/Assets/Prefabs/Enemy Red.prefab.meta -------------------------------------------------------------------------------- /Assets/Prefabs/Enemy Yellow.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herbou/Unity_SpawnerWithProbabilities/HEAD/Assets/Prefabs/Enemy Yellow.prefab -------------------------------------------------------------------------------- /Assets/Prefabs/Enemy Yellow.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herbou/Unity_SpawnerWithProbabilities/HEAD/Assets/Prefabs/Enemy Yellow.prefab.meta -------------------------------------------------------------------------------- /Assets/Scripts.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herbou/Unity_SpawnerWithProbabilities/HEAD/Assets/Scripts.meta -------------------------------------------------------------------------------- /Assets/Scripts/EnemySpawner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herbou/Unity_SpawnerWithProbabilities/HEAD/Assets/Scripts/EnemySpawner.cs -------------------------------------------------------------------------------- /Assets/Scripts/EnemySpawner.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herbou/Unity_SpawnerWithProbabilities/HEAD/Assets/Scripts/EnemySpawner.cs.meta -------------------------------------------------------------------------------- /Assets/scene.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herbou/Unity_SpawnerWithProbabilities/HEAD/Assets/scene.unity -------------------------------------------------------------------------------- /Assets/scene.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herbou/Unity_SpawnerWithProbabilities/HEAD/Assets/scene.unity.meta -------------------------------------------------------------------------------- /LICENCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herbou/Unity_SpawnerWithProbabilities/HEAD/LICENCE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herbou/Unity_SpawnerWithProbabilities/HEAD/README.md --------------------------------------------------------------------------------