From c7f101b8c3a05494d395f8ecbb4d0f0dcf7137d1 Mon Sep 17 00:00:00 2001 From: Sara Date: Sat, 30 Aug 2025 21:16:47 +0200 Subject: [PATCH] feat: added icons for custom classes --- .gitignore | 1 + .../__pycache__/config.cpython-313.pyc | Bin 402 -> 0 bytes modules/wave_survival/config.py | 3 + modules/wave_survival/icons/EnemySpawner.svg | 52 +++++ .../wave_survival/icons/HeadsUpDisplay.svg | 62 ++++++ modules/wave_survival/icons/HealthStatus.svg | 52 +++++ modules/wave_survival/icons/PatrolPath.svg | 77 +++++++ modules/wave_survival/icons/PlayerBody.svg | 110 ++++++++++ modules/wave_survival/icons/PlayerCamera.svg | 41 ++++ modules/wave_survival/icons/PlayerInput.svg | 69 ++++++ .../wave_survival/icons/PlayerInteractor.svg | 93 ++++++++ modules/wave_survival/icons/Revolver.svg | 109 ++++++++++ modules/wave_survival/icons/Rifle.svg | 139 ++++++++++++ .../wave_survival/icons/WeaponInventory.svg | 203 ++++++++++++++++++ 14 files changed, 1011 insertions(+) delete mode 100644 modules/wave_survival/__pycache__/config.cpython-313.pyc create mode 100644 modules/wave_survival/icons/EnemySpawner.svg create mode 100644 modules/wave_survival/icons/HeadsUpDisplay.svg create mode 100644 modules/wave_survival/icons/HealthStatus.svg create mode 100644 modules/wave_survival/icons/PatrolPath.svg create mode 100644 modules/wave_survival/icons/PlayerBody.svg create mode 100644 modules/wave_survival/icons/PlayerCamera.svg create mode 100644 modules/wave_survival/icons/PlayerInput.svg create mode 100644 modules/wave_survival/icons/PlayerInteractor.svg create mode 100644 modules/wave_survival/icons/Revolver.svg create mode 100644 modules/wave_survival/icons/Rifle.svg create mode 100644 modules/wave_survival/icons/WeaponInventory.svg diff --git a/.gitignore b/.gitignore index 75d9e8e0..648399f6 100644 --- a/.gitignore +++ b/.gitignore @@ -21,3 +21,4 @@ build.zip .kdev4 wave-survival-fps.kdev4 __pycache__ +modules/wave_survival/__pycache__ diff --git a/modules/wave_survival/__pycache__/config.cpython-313.pyc b/modules/wave_survival/__pycache__/config.cpython-313.pyc deleted file mode 100644 index 27b1955dabba0be10d66aeb53c1e45e2fd30e6b8..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 402 zcmZ8dy-ve05cWBxgjQ8yWy=`8VW9gluwCdU2Z^coRK=P z0t8PUKbYV{pqqXO+e+Y4WnTY2Sv6R5jb@uB%{g(R# Q1OV{M0j|b5z`_^&0h{VmsQ>@~ diff --git a/modules/wave_survival/config.py b/modules/wave_survival/config.py index 58c88bf1..e92ffafd 100644 --- a/modules/wave_survival/config.py +++ b/modules/wave_survival/config.py @@ -3,3 +3,6 @@ def can_build(env, platform): def configure(env): pass; + +def get_icons_path(): + return "./icons" diff --git a/modules/wave_survival/icons/EnemySpawner.svg b/modules/wave_survival/icons/EnemySpawner.svg new file mode 100644 index 00000000..24962139 --- /dev/null +++ b/modules/wave_survival/icons/EnemySpawner.svg @@ -0,0 +1,52 @@ + + + + + + + + + + + + diff --git a/modules/wave_survival/icons/HeadsUpDisplay.svg b/modules/wave_survival/icons/HeadsUpDisplay.svg new file mode 100644 index 00000000..d521a82a --- /dev/null +++ b/modules/wave_survival/icons/HeadsUpDisplay.svg @@ -0,0 +1,62 @@ + + + + + + + + + + + + + + diff --git a/modules/wave_survival/icons/HealthStatus.svg b/modules/wave_survival/icons/HealthStatus.svg new file mode 100644 index 00000000..5a15b46a --- /dev/null +++ b/modules/wave_survival/icons/HealthStatus.svg @@ -0,0 +1,52 @@ + + + + + + + + + + + diff --git a/modules/wave_survival/icons/PatrolPath.svg b/modules/wave_survival/icons/PatrolPath.svg new file mode 100644 index 00000000..6b20b632 --- /dev/null +++ b/modules/wave_survival/icons/PatrolPath.svg @@ -0,0 +1,77 @@ + + + + + + + + + + + + + + + diff --git a/modules/wave_survival/icons/PlayerBody.svg b/modules/wave_survival/icons/PlayerBody.svg new file mode 100644 index 00000000..a3720663 --- /dev/null +++ b/modules/wave_survival/icons/PlayerBody.svg @@ -0,0 +1,110 @@ + + + + + + + + + + + + + + + + diff --git a/modules/wave_survival/icons/PlayerCamera.svg b/modules/wave_survival/icons/PlayerCamera.svg new file mode 100644 index 00000000..8ecc59e6 --- /dev/null +++ b/modules/wave_survival/icons/PlayerCamera.svg @@ -0,0 +1,41 @@ + + + + + + + + + + diff --git a/modules/wave_survival/icons/PlayerInput.svg b/modules/wave_survival/icons/PlayerInput.svg new file mode 100644 index 00000000..a7736d33 --- /dev/null +++ b/modules/wave_survival/icons/PlayerInput.svg @@ -0,0 +1,69 @@ + + + + + + + + + + + + + diff --git a/modules/wave_survival/icons/PlayerInteractor.svg b/modules/wave_survival/icons/PlayerInteractor.svg new file mode 100644 index 00000000..cfe6fcde --- /dev/null +++ b/modules/wave_survival/icons/PlayerInteractor.svg @@ -0,0 +1,93 @@ + + + + + + + + + + + + + + diff --git a/modules/wave_survival/icons/Revolver.svg b/modules/wave_survival/icons/Revolver.svg new file mode 100644 index 00000000..430f8b46 --- /dev/null +++ b/modules/wave_survival/icons/Revolver.svg @@ -0,0 +1,109 @@ + + + + + + + + + + + + + + + + + diff --git a/modules/wave_survival/icons/Rifle.svg b/modules/wave_survival/icons/Rifle.svg new file mode 100644 index 00000000..06fd91c6 --- /dev/null +++ b/modules/wave_survival/icons/Rifle.svg @@ -0,0 +1,139 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/modules/wave_survival/icons/WeaponInventory.svg b/modules/wave_survival/icons/WeaponInventory.svg new file mode 100644 index 00000000..26fc2ace --- /dev/null +++ b/modules/wave_survival/icons/WeaponInventory.svg @@ -0,0 +1,203 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +