Updated Godot Editor Custom Icons

Wanted to turn the icons used in the Godot Editor into SVGs
This has literally ZERO effect on the Game itself. I just thought it'd be neat.
This commit is contained in:
KirbyKidJ
2025-10-04 16:16:35 -07:00
parent 6201f39e1f
commit 3f7423c72a
16 changed files with 40 additions and 20 deletions

View File

@@ -1,4 +1,4 @@
@icon("res://Assets/Sprites/Editor/Block.png")
@icon("res://Assets/Sprites/Editor/Block.svg")
class_name Block
extends AnimatableBody2D
signal player_block_hit(player: Player)

View File

@@ -1,4 +1,4 @@
@icon("res://Assets/Sprites/Editor/Enemy.png")
@icon("res://Assets/Sprites/Editor/Enemy.svg")
class_name Enemy
extends CharacterBody2D

View File

@@ -1,5 +1,5 @@
@tool
@icon("res://Assets/Sprites/Editor/Pipe.png")
@icon("res://Assets/Sprites/Editor/Pipe.svg")
class_name PipeArea
extends Node2D

View File

@@ -1,4 +1,4 @@
@icon("res://Assets/Sprites/Editor/Level.png")
@icon("res://Assets/Sprites/Editor/Level.svg")
class_name Level
extends Node