├── .github └── ISSUE_TEMPLATE │ └── bug_report.md ├── .gitignore ├── LICENSE ├── Meshes ├── Barrels │ ├── Weapon Barrel 1.fbx │ ├── Weapon Barrel 2.fbx │ ├── Weapon Barrel 3.fbx │ ├── Weapon Barrel 4.fbx │ ├── Weapon Barrel 5.fbx │ ├── Weapon Barrel 6.fbx │ └── Weapon Barrel 7.fbx ├── Bodies │ ├── Weapon Body 1.fbx │ ├── Weapon Body 2.fbx │ ├── Weapon Body 3.fbx │ ├── Weapon Body 4.fbx │ ├── Weapon Body 5.fbx │ ├── Weapon Body 6.fbx │ └── Weapon Body 7.fbx ├── Default Mesh Import Settings.preset ├── Grips │ ├── Weapon Grip 1.fbx │ ├── Weapon Grip 2.fbx │ ├── Weapon Grip 3.fbx │ ├── Weapon Grip 4.fbx │ └── Weapon Grip 5.fbx ├── Magazines │ ├── Weapon Magazine 1.fbx │ ├── Weapon Magazine 2.fbx │ ├── Weapon Magazine 3.fbx │ ├── Weapon Magazine 4.fbx │ └── Weapon Magazine 5.fbx ├── Scopes │ └── Weapon Scope 1.fbx └── Stocks │ ├── Weapon Stock 1.fbx │ ├── Weapon Stock 2.fbx │ ├── Weapon Stock 3.fbx │ ├── Weapon Stock 4.fbx │ └── Weapon Stock 5.fbx ├── Prefabs ├── Barrels │ ├── Weapon Barrel 1.prefab │ ├── Weapon Barrel 2.prefab │ └── Weapon Barrel 3.prefab ├── Bodies │ ├── Weapon Body 1.prefab │ └── Weapon Body 2.prefab ├── Bullet.prefab └── Property Templates │ └── Default Template.asset ├── README.md ├── Scenes ├── Example.unity └── [Legacy] Example.unity └── Scripts ├── Editor └── RandomWeaponGeneratorWindow.cs ├── Enums ├── WeaponRank.cs └── WeaponType.cs ├── Generator └── RuntimeWeaponGenerator.cs ├── Others ├── WeaponProperties.cs └── WeaponPropertiesTemplate.cs └── Weapons └── WeaponBase.cs /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdelfattahradwan/Random-Weapon-Generator-For-Unity/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdelfattahradwan/Random-Weapon-Generator-For-Unity/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdelfattahradwan/Random-Weapon-Generator-For-Unity/HEAD/LICENSE -------------------------------------------------------------------------------- /Meshes/Barrels/Weapon Barrel 1.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdelfattahradwan/Random-Weapon-Generator-For-Unity/HEAD/Meshes/Barrels/Weapon Barrel 1.fbx -------------------------------------------------------------------------------- /Meshes/Barrels/Weapon Barrel 2.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdelfattahradwan/Random-Weapon-Generator-For-Unity/HEAD/Meshes/Barrels/Weapon Barrel 2.fbx -------------------------------------------------------------------------------- /Meshes/Barrels/Weapon Barrel 3.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdelfattahradwan/Random-Weapon-Generator-For-Unity/HEAD/Meshes/Barrels/Weapon Barrel 3.fbx -------------------------------------------------------------------------------- /Meshes/Barrels/Weapon Barrel 4.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdelfattahradwan/Random-Weapon-Generator-For-Unity/HEAD/Meshes/Barrels/Weapon Barrel 4.fbx -------------------------------------------------------------------------------- /Meshes/Barrels/Weapon Barrel 5.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdelfattahradwan/Random-Weapon-Generator-For-Unity/HEAD/Meshes/Barrels/Weapon Barrel 5.fbx -------------------------------------------------------------------------------- /Meshes/Barrels/Weapon Barrel 6.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdelfattahradwan/Random-Weapon-Generator-For-Unity/HEAD/Meshes/Barrels/Weapon Barrel 6.fbx -------------------------------------------------------------------------------- /Meshes/Barrels/Weapon Barrel 7.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdelfattahradwan/Random-Weapon-Generator-For-Unity/HEAD/Meshes/Barrels/Weapon Barrel 7.fbx -------------------------------------------------------------------------------- /Meshes/Bodies/Weapon Body 1.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdelfattahradwan/Random-Weapon-Generator-For-Unity/HEAD/Meshes/Bodies/Weapon Body 1.fbx -------------------------------------------------------------------------------- /Meshes/Bodies/Weapon Body 2.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdelfattahradwan/Random-Weapon-Generator-For-Unity/HEAD/Meshes/Bodies/Weapon Body 2.fbx -------------------------------------------------------------------------------- /Meshes/Bodies/Weapon Body 3.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdelfattahradwan/Random-Weapon-Generator-For-Unity/HEAD/Meshes/Bodies/Weapon Body 3.fbx -------------------------------------------------------------------------------- /Meshes/Bodies/Weapon Body 4.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdelfattahradwan/Random-Weapon-Generator-For-Unity/HEAD/Meshes/Bodies/Weapon Body 4.fbx -------------------------------------------------------------------------------- /Meshes/Bodies/Weapon Body 5.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdelfattahradwan/Random-Weapon-Generator-For-Unity/HEAD/Meshes/Bodies/Weapon Body 5.fbx -------------------------------------------------------------------------------- /Meshes/Bodies/Weapon Body 6.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdelfattahradwan/Random-Weapon-Generator-For-Unity/HEAD/Meshes/Bodies/Weapon Body 6.fbx -------------------------------------------------------------------------------- /Meshes/Bodies/Weapon Body 7.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdelfattahradwan/Random-Weapon-Generator-For-Unity/HEAD/Meshes/Bodies/Weapon Body 7.fbx -------------------------------------------------------------------------------- /Meshes/Default Mesh Import Settings.preset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdelfattahradwan/Random-Weapon-Generator-For-Unity/HEAD/Meshes/Default Mesh Import Settings.preset -------------------------------------------------------------------------------- /Meshes/Grips/Weapon Grip 1.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdelfattahradwan/Random-Weapon-Generator-For-Unity/HEAD/Meshes/Grips/Weapon Grip 1.fbx -------------------------------------------------------------------------------- /Meshes/Grips/Weapon Grip 2.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdelfattahradwan/Random-Weapon-Generator-For-Unity/HEAD/Meshes/Grips/Weapon Grip 2.fbx -------------------------------------------------------------------------------- /Meshes/Grips/Weapon Grip 3.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdelfattahradwan/Random-Weapon-Generator-For-Unity/HEAD/Meshes/Grips/Weapon Grip 3.fbx -------------------------------------------------------------------------------- /Meshes/Grips/Weapon Grip 4.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdelfattahradwan/Random-Weapon-Generator-For-Unity/HEAD/Meshes/Grips/Weapon Grip 4.fbx -------------------------------------------------------------------------------- /Meshes/Grips/Weapon Grip 5.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdelfattahradwan/Random-Weapon-Generator-For-Unity/HEAD/Meshes/Grips/Weapon Grip 5.fbx -------------------------------------------------------------------------------- /Meshes/Magazines/Weapon Magazine 1.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdelfattahradwan/Random-Weapon-Generator-For-Unity/HEAD/Meshes/Magazines/Weapon Magazine 1.fbx -------------------------------------------------------------------------------- /Meshes/Magazines/Weapon Magazine 2.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdelfattahradwan/Random-Weapon-Generator-For-Unity/HEAD/Meshes/Magazines/Weapon Magazine 2.fbx -------------------------------------------------------------------------------- /Meshes/Magazines/Weapon Magazine 3.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdelfattahradwan/Random-Weapon-Generator-For-Unity/HEAD/Meshes/Magazines/Weapon Magazine 3.fbx -------------------------------------------------------------------------------- /Meshes/Magazines/Weapon Magazine 4.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdelfattahradwan/Random-Weapon-Generator-For-Unity/HEAD/Meshes/Magazines/Weapon Magazine 4.fbx -------------------------------------------------------------------------------- /Meshes/Magazines/Weapon Magazine 5.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdelfattahradwan/Random-Weapon-Generator-For-Unity/HEAD/Meshes/Magazines/Weapon Magazine 5.fbx -------------------------------------------------------------------------------- /Meshes/Scopes/Weapon Scope 1.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdelfattahradwan/Random-Weapon-Generator-For-Unity/HEAD/Meshes/Scopes/Weapon Scope 1.fbx -------------------------------------------------------------------------------- /Meshes/Stocks/Weapon Stock 1.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdelfattahradwan/Random-Weapon-Generator-For-Unity/HEAD/Meshes/Stocks/Weapon Stock 1.fbx -------------------------------------------------------------------------------- /Meshes/Stocks/Weapon Stock 2.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdelfattahradwan/Random-Weapon-Generator-For-Unity/HEAD/Meshes/Stocks/Weapon Stock 2.fbx -------------------------------------------------------------------------------- /Meshes/Stocks/Weapon Stock 3.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdelfattahradwan/Random-Weapon-Generator-For-Unity/HEAD/Meshes/Stocks/Weapon Stock 3.fbx -------------------------------------------------------------------------------- /Meshes/Stocks/Weapon Stock 4.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdelfattahradwan/Random-Weapon-Generator-For-Unity/HEAD/Meshes/Stocks/Weapon Stock 4.fbx -------------------------------------------------------------------------------- /Meshes/Stocks/Weapon Stock 5.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdelfattahradwan/Random-Weapon-Generator-For-Unity/HEAD/Meshes/Stocks/Weapon Stock 5.fbx -------------------------------------------------------------------------------- /Prefabs/Barrels/Weapon Barrel 1.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdelfattahradwan/Random-Weapon-Generator-For-Unity/HEAD/Prefabs/Barrels/Weapon Barrel 1.prefab -------------------------------------------------------------------------------- /Prefabs/Barrels/Weapon Barrel 2.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdelfattahradwan/Random-Weapon-Generator-For-Unity/HEAD/Prefabs/Barrels/Weapon Barrel 2.prefab -------------------------------------------------------------------------------- /Prefabs/Barrels/Weapon Barrel 3.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdelfattahradwan/Random-Weapon-Generator-For-Unity/HEAD/Prefabs/Barrels/Weapon Barrel 3.prefab -------------------------------------------------------------------------------- /Prefabs/Bodies/Weapon Body 1.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdelfattahradwan/Random-Weapon-Generator-For-Unity/HEAD/Prefabs/Bodies/Weapon Body 1.prefab -------------------------------------------------------------------------------- /Prefabs/Bodies/Weapon Body 2.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdelfattahradwan/Random-Weapon-Generator-For-Unity/HEAD/Prefabs/Bodies/Weapon Body 2.prefab -------------------------------------------------------------------------------- /Prefabs/Bullet.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdelfattahradwan/Random-Weapon-Generator-For-Unity/HEAD/Prefabs/Bullet.prefab -------------------------------------------------------------------------------- /Prefabs/Property Templates/Default Template.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdelfattahradwan/Random-Weapon-Generator-For-Unity/HEAD/Prefabs/Property Templates/Default Template.asset -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdelfattahradwan/Random-Weapon-Generator-For-Unity/HEAD/README.md -------------------------------------------------------------------------------- /Scenes/Example.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdelfattahradwan/Random-Weapon-Generator-For-Unity/HEAD/Scenes/Example.unity -------------------------------------------------------------------------------- /Scenes/[Legacy] Example.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdelfattahradwan/Random-Weapon-Generator-For-Unity/HEAD/Scenes/[Legacy] Example.unity -------------------------------------------------------------------------------- /Scripts/Editor/RandomWeaponGeneratorWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdelfattahradwan/Random-Weapon-Generator-For-Unity/HEAD/Scripts/Editor/RandomWeaponGeneratorWindow.cs -------------------------------------------------------------------------------- /Scripts/Enums/WeaponRank.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdelfattahradwan/Random-Weapon-Generator-For-Unity/HEAD/Scripts/Enums/WeaponRank.cs -------------------------------------------------------------------------------- /Scripts/Enums/WeaponType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdelfattahradwan/Random-Weapon-Generator-For-Unity/HEAD/Scripts/Enums/WeaponType.cs -------------------------------------------------------------------------------- /Scripts/Generator/RuntimeWeaponGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdelfattahradwan/Random-Weapon-Generator-For-Unity/HEAD/Scripts/Generator/RuntimeWeaponGenerator.cs -------------------------------------------------------------------------------- /Scripts/Others/WeaponProperties.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdelfattahradwan/Random-Weapon-Generator-For-Unity/HEAD/Scripts/Others/WeaponProperties.cs -------------------------------------------------------------------------------- /Scripts/Others/WeaponPropertiesTemplate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdelfattahradwan/Random-Weapon-Generator-For-Unity/HEAD/Scripts/Others/WeaponPropertiesTemplate.cs -------------------------------------------------------------------------------- /Scripts/Weapons/WeaponBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdelfattahradwan/Random-Weapon-Generator-For-Unity/HEAD/Scripts/Weapons/WeaponBase.cs --------------------------------------------------------------------------------