Main Menu, music, and credits
- Got sprites for menu buttons - Added buttons to the menu - Added a manager script for the menu - Created resources for playlists and credits - Created a music player - Created the root scene that everything will be loaded into
10
Resources/Credits/gameDesign.tres
Normal file
@ -0,0 +1,10 @@
|
||||
[gd_resource type="Resource" script_class="Credit" load_steps=2 format=3 uid="uid://cwdwy87yqbivh"]
|
||||
|
||||
[ext_resource type="Script" path="res://Resources/credit.gd" id="1_k5s2c"]
|
||||
|
||||
[resource]
|
||||
script = ExtResource("1_k5s2c")
|
||||
title = "Game Designer"
|
||||
name = "Nolan Casey (nc543)"
|
||||
description = ""
|
||||
links = ""
|
10
Resources/Credits/music1.tres
Normal file
@ -0,0 +1,10 @@
|
||||
[gd_resource type="Resource" script_class="Credit" load_steps=2 format=3 uid="uid://ty4ajqwpd6xd"]
|
||||
|
||||
[ext_resource type="Script" path="res://Resources/credit.gd" id="1_ldflp"]
|
||||
|
||||
[resource]
|
||||
script = ExtResource("1_ldflp")
|
||||
title = "Music"
|
||||
name = "Alexander Nakarada"
|
||||
description = ""
|
||||
links = "www.creatorchords.com"
|
10
Resources/Credits/particles.tres
Normal file
@ -0,0 +1,10 @@
|
||||
[gd_resource type="Resource" script_class="Credit" load_steps=2 format=3 uid="uid://br28lfq7y7wq6"]
|
||||
|
||||
[ext_resource type="Script" path="res://Resources/credit.gd" id="1_eheye"]
|
||||
|
||||
[resource]
|
||||
script = ExtResource("1_eheye")
|
||||
title = "Particles"
|
||||
name = "Code Manu"
|
||||
description = ""
|
||||
links = "https://codemanu.itch.io/"
|
10
Resources/Credits/programmer.tres
Normal file
@ -0,0 +1,10 @@
|
||||
[gd_resource type="Resource" script_class="Credit" load_steps=2 format=3 uid="uid://b8qkk0kmlfwg0"]
|
||||
|
||||
[ext_resource type="Script" path="res://Resources/credit.gd" id="1_h1lu3"]
|
||||
|
||||
[resource]
|
||||
script = ExtResource("1_h1lu3")
|
||||
title = "Programmer"
|
||||
name = "Nolan Casey (nc543)"
|
||||
description = ""
|
||||
links = ""
|
10
Resources/Credits/sprites.tres
Normal file
@ -0,0 +1,10 @@
|
||||
[gd_resource type="Resource" script_class="Credit" load_steps=2 format=3 uid="uid://c8knbj20e7npa"]
|
||||
|
||||
[ext_resource type="Script" path="res://Resources/credit.gd" id="1_5gy0s"]
|
||||
|
||||
[resource]
|
||||
script = ExtResource("1_5gy0s")
|
||||
title = "Sprites"
|
||||
name = "Captain Skeleto"
|
||||
description = ""
|
||||
links = "https://captainskeleto.itch.io/"
|
7
Resources/Playlists/arena.tres
Normal file
@ -0,0 +1,7 @@
|
||||
[gd_resource type="Resource" script_class="Playlist" load_steps=2 format=3 uid="uid://be5h7h37q7yfy"]
|
||||
|
||||
[ext_resource type="Script" path="res://Resources/playlist.gd" id="1_kyxgb"]
|
||||
|
||||
[resource]
|
||||
script = ExtResource("1_kyxgb")
|
||||
music = Array[String](["res://Sound/Music/Achievement.mp3"])
|
7
Resources/Playlists/credits.tres
Normal file
@ -0,0 +1,7 @@
|
||||
[gd_resource type="Resource" script_class="Playlist" load_steps=2 format=3 uid="uid://cdv4l1enaomh1"]
|
||||
|
||||
[ext_resource type="Script" path="res://Resources/playlist.gd" id="1_6byfa"]
|
||||
|
||||
[resource]
|
||||
script = ExtResource("1_6byfa")
|
||||
music = Array[String](["res://Sound/Music/Pathfinder.mp3"])
|
7
Resources/Playlists/mainMenu.tres
Normal file
@ -0,0 +1,7 @@
|
||||
[gd_resource type="Resource" script_class="Playlist" load_steps=2 format=3 uid="uid://brcih5ts28oem"]
|
||||
|
||||
[ext_resource type="Script" path="res://Resources/playlist.gd" id="1_4ivkm"]
|
||||
|
||||
[resource]
|
||||
script = ExtResource("1_4ivkm")
|
||||
music = Array[String](["res://Sound/Music/Borgar.ogg", "res://Sound/Music/Wanderer.mp3"])
|
7
Resources/Playlists/tavern.tres
Normal file
@ -0,0 +1,7 @@
|
||||
[gd_resource type="Resource" script_class="Playlist" load_steps=2 format=3 uid="uid://2l80lgaqlukq"]
|
||||
|
||||
[ext_resource type="Script" path="res://Resources/playlist.gd" id="1_u6fpt"]
|
||||
|
||||
[resource]
|
||||
script = ExtResource("1_u6fpt")
|
||||
music = Array[String]([])
|
8
Resources/credit.gd
Normal file
@ -0,0 +1,8 @@
|
||||
extends Resource
|
||||
|
||||
class_name Credit
|
||||
|
||||
@export var title: String
|
||||
@export var name: String
|
||||
@export var description: String
|
||||
@export var links: String
|
28
Resources/playlist.gd
Normal file
@ -0,0 +1,28 @@
|
||||
extends Resource
|
||||
|
||||
class_name Playlist
|
||||
|
||||
@export var music: Array[String]
|
||||
var randomized: Array[int]
|
||||
var index: int = 0
|
||||
|
||||
func init(randomize: bool) -> void:
|
||||
for i in range(music.size()):
|
||||
randomized.append(i)
|
||||
if randomize:
|
||||
shuffle()
|
||||
|
||||
func getNext() -> String:
|
||||
var ret: String = music[randomized[index]]
|
||||
index += 1
|
||||
if index >= randomized.size():
|
||||
index = 0
|
||||
return ret
|
||||
|
||||
func shuffle() -> void:
|
||||
var shuffled: Array[int]
|
||||
for i in range(randomized.size()):
|
||||
var x: int = randomized.pick_random()
|
||||
randomized.erase(x)
|
||||
shuffled.append(x)
|
||||
randomized = shuffled
|
@ -1,7 +1,16 @@
|
||||
[gd_scene load_steps=3 format=3 uid="uid://cme8avdi3w0sg"]
|
||||
[gd_scene load_steps=12 format=3 uid="uid://cme8avdi3w0sg"]
|
||||
|
||||
[ext_resource type="Texture2D" uid="uid://s86ux2sxmlff" path="res://Sprites/Backgrounds/Castle Pack by CaptainSkeleto/castle pack5.png" id="1_7mj66"]
|
||||
[ext_resource type="FontFile" uid="uid://bhggfnolqg5hu" path="res://Fonts/breathe_fire/Breathe Fire.otf" id="2_0dtno"]
|
||||
[ext_resource type="Script" path="res://Scripts/TitleScreen.gd" id="2_3k665"]
|
||||
[ext_resource type="Texture2D" uid="uid://nnexhrn82ya1" path="res://Sprites/UI/Edinnu_UI_asset_pack/Menu/Menu (12).png" id="3_8i0th"]
|
||||
[ext_resource type="Texture2D" uid="uid://cakcdmbrg18pl" path="res://Sprites/UI/Edinnu_UI_asset_pack/Menu/Menu (10).png" id="3_13m7d"]
|
||||
[ext_resource type="Texture2D" uid="uid://bc2xelxdfct7m" path="res://Sprites/UI/Edinnu_UI_asset_pack/Menu_buttons/Menu_button (2).png" id="5_ugt05"]
|
||||
[ext_resource type="Texture2D" uid="uid://cyf8re8ysh5yy" path="res://Sprites/UI/Edinnu_UI_asset_pack/Menu_buttons/Menu_button (19).png" id="6_y4hvi"]
|
||||
[ext_resource type="Texture2D" uid="uid://blydsiai2vc7g" path="res://Sprites/UI/Edinnu_UI_asset_pack/Menu_buttons/Menu_button (15).png" id="7_l7447"]
|
||||
[ext_resource type="Texture2D" uid="uid://cl0ommmgyxd6l" path="res://Sprites/UI/Edinnu_UI_asset_pack/Menu_buttons/Menu_button (32).png" id="8_pax86"]
|
||||
[ext_resource type="Texture2D" uid="uid://c678lemibfpux" path="res://Sprites/UI/Edinnu_UI_asset_pack/Menu_buttons/Menu_button (7).png" id="9_pbom3"]
|
||||
[ext_resource type="Texture2D" uid="uid://sx01p5y3lrwr" path="res://Sprites/UI/Edinnu_UI_asset_pack/Menu_buttons/Menu_button (24).png" id="10_vqgbn"]
|
||||
|
||||
[node name="MainMenu" type="Control"]
|
||||
layout_mode = 3
|
||||
@ -22,15 +31,18 @@ texture = ExtResource("1_7mj66")
|
||||
expand_mode = 2
|
||||
stretch_mode = 6
|
||||
|
||||
[node name="Title" type="Node" parent="."]
|
||||
[node name="TitleScreen" type="Node" parent="."]
|
||||
script = ExtResource("2_3k665")
|
||||
|
||||
[node name="Your" type="RichTextLabel" parent="Title"]
|
||||
[node name="Title" type="Node" parent="TitleScreen"]
|
||||
|
||||
[node name="Your" type="RichTextLabel" parent="TitleScreen/Title"]
|
||||
anchors_preset = 5
|
||||
anchor_left = 0.5
|
||||
anchor_right = 0.5
|
||||
offset_left = -62.0
|
||||
offset_left = -42.0
|
||||
offset_top = 64.0
|
||||
offset_right = 314.0
|
||||
offset_right = 334.0
|
||||
offset_bottom = 264.0
|
||||
grow_horizontal = 2
|
||||
scale = Vector2(0.5, 0.5)
|
||||
@ -41,12 +53,12 @@ theme_override_fonts/normal_font = ExtResource("2_0dtno")
|
||||
theme_override_font_sizes/normal_font_size = 190
|
||||
text = "Your"
|
||||
|
||||
[node name="Raise" type="RichTextLabel" parent="Title"]
|
||||
[node name="Raise" type="RichTextLabel" parent="TitleScreen/Title"]
|
||||
anchors_preset = 5
|
||||
anchor_left = 0.5
|
||||
anchor_right = 0.5
|
||||
offset_left = -167.0
|
||||
offset_right = 245.0
|
||||
offset_left = -147.0
|
||||
offset_right = 265.0
|
||||
offset_bottom = 218.0
|
||||
grow_horizontal = 2
|
||||
scale = Vector2(0.5, 0.5)
|
||||
@ -59,13 +71,13 @@ theme_override_fonts/normal_font = ExtResource("2_0dtno")
|
||||
theme_override_font_sizes/normal_font_size = 200
|
||||
text = "Raise"
|
||||
|
||||
[node name="Wand" type="RichTextLabel" parent="Title"]
|
||||
[node name="Wand" type="RichTextLabel" parent="TitleScreen/Title"]
|
||||
anchors_preset = 5
|
||||
anchor_left = 0.5
|
||||
anchor_right = 0.5
|
||||
offset_left = -157.0
|
||||
offset_left = -137.0
|
||||
offset_top = 104.0
|
||||
offset_right = 403.0
|
||||
offset_right = 423.0
|
||||
offset_bottom = 390.0
|
||||
grow_horizontal = 2
|
||||
scale = Vector2(0.5, 0.5)
|
||||
@ -76,13 +88,13 @@ theme_override_fonts/normal_font = ExtResource("2_0dtno")
|
||||
theme_override_font_sizes/normal_font_size = 270
|
||||
text = "Wand"
|
||||
|
||||
[node name="Disclaimer" type="RichTextLabel" parent="Title"]
|
||||
[node name="Disclaimer" type="RichTextLabel" parent="TitleScreen/Title"]
|
||||
anchors_preset = 5
|
||||
anchor_left = 0.5
|
||||
anchor_right = 0.5
|
||||
offset_left = -93.0
|
||||
offset_left = -73.0
|
||||
offset_top = 216.0
|
||||
offset_right = 682.0
|
||||
offset_right = 702.0
|
||||
offset_bottom = 359.0
|
||||
grow_horizontal = 2
|
||||
scale = Vector2(0.2, 0.2)
|
||||
@ -93,4 +105,129 @@ theme_override_fonts/normal_font = ExtResource("2_0dtno")
|
||||
theme_override_font_sizes/normal_font_size = 100
|
||||
text = "*Wands not included"
|
||||
|
||||
[node name="Buttons" type="Node" parent="."]
|
||||
[node name="Buttons" type="Node" parent="TitleScreen"]
|
||||
|
||||
[node name="Play" type="TextureButton" parent="TitleScreen/Buttons"]
|
||||
modulate = Color(1, 0.972549, 0.811765, 1)
|
||||
anchors_preset = 8
|
||||
anchor_left = 0.5
|
||||
anchor_top = 0.5
|
||||
anchor_right = 0.5
|
||||
anchor_bottom = 0.5
|
||||
offset_left = -51.0
|
||||
offset_top = -20.0
|
||||
offset_right = 51.0
|
||||
offset_bottom = 20.0
|
||||
grow_horizontal = 2
|
||||
grow_vertical = 2
|
||||
scale = Vector2(2, 2)
|
||||
pivot_offset = Vector2(51, 20)
|
||||
texture_normal = ExtResource("3_13m7d")
|
||||
texture_pressed = ExtResource("3_8i0th")
|
||||
|
||||
[node name="RichTextLabel" type="RichTextLabel" parent="TitleScreen/Buttons/Play"]
|
||||
layout_mode = 1
|
||||
anchors_preset = 15
|
||||
anchor_right = 1.0
|
||||
anchor_bottom = 1.0
|
||||
offset_left = -12.0
|
||||
offset_top = -4.0
|
||||
offset_right = 70.0
|
||||
offset_bottom = 36.0
|
||||
grow_horizontal = 2
|
||||
grow_vertical = 2
|
||||
scale = Vector2(0.3, 0.3)
|
||||
pivot_offset = Vector2(50.8333, 20)
|
||||
mouse_filter = 2
|
||||
theme_override_colors/default_color = Color(0, 0, 0, 1)
|
||||
theme_override_fonts/normal_font = ExtResource("2_0dtno")
|
||||
theme_override_font_sizes/normal_font_size = 69
|
||||
bbcode_enabled = true
|
||||
text = "[center]Play[/center]"
|
||||
|
||||
[node name="Credits" type="TextureButton" parent="TitleScreen/Buttons"]
|
||||
modulate = Color(1, 0.972549, 0.811765, 1)
|
||||
anchors_preset = 8
|
||||
anchor_left = 0.5
|
||||
anchor_top = 0.5
|
||||
anchor_right = 0.5
|
||||
anchor_bottom = 0.5
|
||||
offset_left = -51.0
|
||||
offset_top = 69.0
|
||||
offset_right = 51.0
|
||||
offset_bottom = 109.0
|
||||
grow_horizontal = 2
|
||||
grow_vertical = 2
|
||||
scale = Vector2(2, 2)
|
||||
pivot_offset = Vector2(51, 20)
|
||||
texture_normal = ExtResource("3_13m7d")
|
||||
texture_pressed = ExtResource("3_8i0th")
|
||||
|
||||
[node name="RichTextLabel" type="RichTextLabel" parent="TitleScreen/Buttons/Credits"]
|
||||
layout_mode = 1
|
||||
anchors_preset = 15
|
||||
anchor_right = 1.0
|
||||
anchor_bottom = 1.0
|
||||
offset_left = -25.0
|
||||
offset_top = -6.5
|
||||
offset_right = 145.0
|
||||
offset_bottom = 33.5
|
||||
grow_horizontal = 2
|
||||
grow_vertical = 2
|
||||
scale = Vector2(0.3, 0.3)
|
||||
pivot_offset = Vector2(50.8333, 20)
|
||||
mouse_filter = 2
|
||||
theme_override_colors/default_color = Color(0, 0, 0, 1)
|
||||
theme_override_fonts/normal_font = ExtResource("2_0dtno")
|
||||
theme_override_font_sizes/normal_font_size = 69
|
||||
bbcode_enabled = true
|
||||
text = "[center]Credits[/center]"
|
||||
|
||||
[node name="Settings" type="TextureButton" parent="TitleScreen/Buttons"]
|
||||
modulate = Color(1, 0.972549, 0.811765, 1)
|
||||
anchors_preset = 8
|
||||
anchor_left = 0.5
|
||||
anchor_top = 0.5
|
||||
anchor_right = 0.5
|
||||
anchor_bottom = 0.5
|
||||
offset_left = -63.0
|
||||
offset_top = 145.0
|
||||
offset_right = -33.0
|
||||
offset_bottom = 179.0
|
||||
grow_horizontal = 2
|
||||
grow_vertical = 2
|
||||
scale = Vector2(2, 2)
|
||||
pivot_offset = Vector2(14.5, 14.5)
|
||||
texture_normal = ExtResource("5_ugt05")
|
||||
texture_pressed = ExtResource("6_y4hvi")
|
||||
|
||||
[node name="Quit" type="TextureButton" parent="TitleScreen/Buttons"]
|
||||
modulate = Color(1, 0.972549, 0.811765, 1)
|
||||
anchors_preset = 8
|
||||
anchor_left = 0.5
|
||||
anchor_top = 0.5
|
||||
anchor_right = 0.5
|
||||
anchor_bottom = 0.5
|
||||
offset_left = 32.0
|
||||
offset_top = 145.0
|
||||
offset_right = 62.0
|
||||
offset_bottom = 179.0
|
||||
grow_horizontal = 2
|
||||
grow_vertical = 2
|
||||
scale = Vector2(2, 2)
|
||||
pivot_offset = Vector2(14.5, 14.5)
|
||||
texture_normal = ExtResource("7_l7447")
|
||||
texture_pressed = ExtResource("8_pax86")
|
||||
|
||||
[node name="About" type="TextureButton" parent="TitleScreen/Buttons"]
|
||||
modulate = Color(1, 0.972549, 0.811765, 1)
|
||||
offset_top = 7.0
|
||||
offset_right = 30.0
|
||||
offset_bottom = 41.0
|
||||
scale = Vector2(2, 2)
|
||||
texture_normal = ExtResource("9_pbom3")
|
||||
texture_pressed = ExtResource("10_vqgbn")
|
||||
|
||||
[node name="Settings" type="Node" parent="."]
|
||||
|
||||
[node name="Credits" type="Node" parent="."]
|
||||
|
8
Scenes/musicPlayer.tscn
Normal file
@ -0,0 +1,8 @@
|
||||
[gd_scene load_steps=2 format=3 uid="uid://c8ni0t7brphc7"]
|
||||
|
||||
[ext_resource type="Script" path="res://Scripts/musicPlayer.gd" id="1_7oew4"]
|
||||
|
||||
[node name="MusicPlayer" type="AudioStreamPlayer"]
|
||||
script = ExtResource("1_7oew4")
|
||||
|
||||
[connection signal="finished" from="." to="." method="_onSongFinished"]
|
16
Scenes/root.tscn
Normal file
@ -0,0 +1,16 @@
|
||||
[gd_scene load_steps=5 format=3 uid="uid://bix346il46rme"]
|
||||
|
||||
[ext_resource type="PackedScene" uid="uid://c8ni0t7brphc7" path="res://Scenes/musicPlayer.tscn" id="1_60q85"]
|
||||
[ext_resource type="PackedScene" uid="uid://d2owoq5q27v8q" path="res://Scenes/data.tscn" id="2_ba8tb"]
|
||||
[ext_resource type="PackedScene" uid="uid://cme8avdi3w0sg" path="res://Scenes/UI/mainMenu.tscn" id="3_vjpnb"]
|
||||
|
||||
[sub_resource type="AudioStream" id="AudioStream_ibb28"]
|
||||
|
||||
[node name="Root" type="Node"]
|
||||
|
||||
[node name="MusicPlayer" parent="." instance=ExtResource("1_60q85")]
|
||||
stream = SubResource("AudioStream_ibb28")
|
||||
|
||||
[node name="Data" parent="." instance=ExtResource("2_ba8tb")]
|
||||
|
||||
[node name="MainMenu" parent="." instance=ExtResource("3_vjpnb")]
|
@ -22,7 +22,7 @@ func _process(delta):
|
||||
effect.position = lerp(top, bottom, timer)
|
||||
timer = clampf(timer + delta, 0, 1)
|
||||
|
||||
func charge(strength: float, element: Data.Element):
|
||||
func charge(strength: float, element: Data.Element) -> void:
|
||||
charging = true
|
||||
emitting = true
|
||||
process_material.orbit_velocity_min = strength / 50
|
||||
@ -33,7 +33,7 @@ func charge(strength: float, element: Data.Element):
|
||||
process_material.anim_speed_max = strength / 4
|
||||
timer = 0
|
||||
|
||||
func disable():
|
||||
func disable() -> void:
|
||||
charging = false
|
||||
emitting = false
|
||||
timer = 0
|
||||
|
@ -36,11 +36,11 @@ func _process(delta):
|
||||
if timer > explodeDur:
|
||||
self.free()
|
||||
|
||||
func explode():
|
||||
func explode() -> void:
|
||||
ballofayr.hide()
|
||||
particles.emitting = true
|
||||
exploding = true
|
||||
timer = 0
|
||||
|
||||
func castFailed():
|
||||
func castFailed() -> void:
|
||||
explode()
|
||||
|
@ -29,7 +29,7 @@ func _process(delta):
|
||||
if failPath.progress_ratio == 1:
|
||||
self.free()
|
||||
|
||||
func castFailed():
|
||||
func castFailed() -> void:
|
||||
casting = false
|
||||
texture.get_parent().remove_child(texture)
|
||||
failPath.add_child(texture)
|
||||
|
42
Scripts/TitleScreen.gd
Normal file
@ -0,0 +1,42 @@
|
||||
extends Node
|
||||
|
||||
@onready var raise: RichTextLabel = $Title/Raise
|
||||
@onready var your: RichTextLabel = $Title/Your
|
||||
@onready var wand: RichTextLabel = $Title/Wand
|
||||
@onready var disclaimer: RichTextLabel = $Title/Disclaimer
|
||||
|
||||
@onready var play: TextureButton = $Buttons/Play
|
||||
@onready var credits: TextureButton = $Buttons/Credits
|
||||
@onready var settings: TextureButton = $Buttons/Settings
|
||||
@onready var quit: TextureButton = $Buttons/Quit
|
||||
@onready var about: TextureButton = $Buttons/About
|
||||
|
||||
# Called when the node enters the scene tree for the first time.
|
||||
func _ready():
|
||||
pass # Replace with function body.
|
||||
|
||||
# Called every frame. 'delta' is the elapsed time since the previous frame.
|
||||
func _process(delta):
|
||||
pass
|
||||
|
||||
func hide():
|
||||
raise.hide()
|
||||
your.hide()
|
||||
wand.hide()
|
||||
disclaimer.hide()
|
||||
play.hide()
|
||||
credits.hide()
|
||||
settings.hide()
|
||||
quit.hide()
|
||||
about.hide()
|
||||
|
||||
func show():
|
||||
raise.show()
|
||||
your.show()
|
||||
wand.show()
|
||||
disclaimer.show()
|
||||
play.show()
|
||||
credits.show()
|
||||
settings.show()
|
||||
quit.show()
|
||||
about.show()
|
@ -6,9 +6,9 @@ class_name AnimationBase
|
||||
var targetProg: float
|
||||
var finalProg: float
|
||||
|
||||
func castFailed():
|
||||
func castFailed() -> void:
|
||||
pass
|
||||
|
||||
func setProgress(target: float, final: float = finalProg):
|
||||
func setProgress(target: float, final: float = finalProg) -> void:
|
||||
targetProg = target
|
||||
finalProg = final
|
||||
|
@ -17,7 +17,7 @@ func _ready():
|
||||
if data.difficulty > 2:
|
||||
primaryBox.hide()
|
||||
|
||||
func setDirs(current: String, next: String = "none"):
|
||||
func setDirs(current: String, next: String = "none") -> void:
|
||||
match current:
|
||||
"none":
|
||||
primary.hide()
|
||||
|
@ -41,32 +41,32 @@ func _process(delta):
|
||||
Data.Difficulty.HARD: _hardAI(delta)
|
||||
Data.Difficulty.GAMER: _gamerAI(delta)
|
||||
|
||||
func _easyAI(delta):
|
||||
func _easyAI(delta) -> void:
|
||||
pass
|
||||
|
||||
func _normalAI(delta):
|
||||
func _normalAI(delta) -> void:
|
||||
pass
|
||||
|
||||
func _hardAI(delta):
|
||||
func _hardAI(delta) -> void:
|
||||
pass
|
||||
|
||||
func _gamerAI(delta):
|
||||
func _gamerAI(delta) -> void:
|
||||
pass
|
||||
|
||||
func _finishedCasting():
|
||||
func _finishedCasting() -> void:
|
||||
pass
|
||||
|
||||
func timing(delta):
|
||||
func timing(delta) -> void:
|
||||
castCooldown -= delta
|
||||
if castCooldown <= 0:
|
||||
pass
|
||||
|
||||
func alterHealth(change: float, stun: bool):
|
||||
func alterHealth(change: float, stun: bool) -> void:
|
||||
health += change
|
||||
if stun:
|
||||
casting = false
|
||||
renderer.play("hit")
|
||||
healthChanged.emit(health)
|
||||
|
||||
func animationFinished():
|
||||
func animationFinished() -> void:
|
||||
renderer.play("idle")
|
||||
|
@ -17,8 +17,20 @@ enum Difficulty{
|
||||
GAMER
|
||||
}
|
||||
|
||||
enum Location{
|
||||
MAINMENU,
|
||||
CREDITS,
|
||||
TAVERN,
|
||||
ARENA,
|
||||
DEAD
|
||||
}
|
||||
|
||||
@export var spellbook: Spellbook
|
||||
@export var difficulty: Difficulty = Difficulty.NORMAL
|
||||
@export var animations: Dictionary = {}
|
||||
@export var player: Combatant
|
||||
@export var opponent: Combatant
|
||||
@export var loc: Location = Location.MAINMENU
|
||||
@export var masterVolume: float = 70
|
||||
@export var musicVolume: float = 70
|
||||
@export var effectsVolume: float = 70
|
||||
|
@ -3,6 +3,6 @@ class_name HealthBar extends Control
|
||||
@onready var bar: ColorRect = $ColorRect2
|
||||
@export var maxHealth: float = 1
|
||||
|
||||
func healthChanged(health):
|
||||
func healthChanged(health) -> void:
|
||||
print("Health Changed")
|
||||
bar.size.y = (health / maxHealth) * 100
|
||||
|
37
Scripts/musicPlayer.gd
Normal file
@ -0,0 +1,37 @@
|
||||
extends AudioStreamPlayer
|
||||
|
||||
@onready var data: Data = get_node("/root/Root/Data")
|
||||
var mainMenuPlaylist: Playlist = load("res://Resources/Playlists/mainMenu.tres")
|
||||
var creditsPlaylist: Playlist = load("res://Resources/Playlists/credits.tres")
|
||||
var tavernPlaylist: Playlist = load("res://Resources/Playlists/tavern.tres")
|
||||
var arenaPlaylist: Playlist = load("res://Resources/Playlists/arena.tres")
|
||||
var currentLoc: Playlist
|
||||
|
||||
# Called when the node enters the scene tree for the first time.
|
||||
func _ready():
|
||||
mainMenuPlaylist.init(false)
|
||||
creditsPlaylist.init(false)
|
||||
tavernPlaylist.init(true)
|
||||
arenaPlaylist.init(true)
|
||||
currentLoc = mainMenuPlaylist
|
||||
setLoc(data.loc)
|
||||
|
||||
func _onSongFinished() -> void:
|
||||
stream = load(currentLoc.getNext())
|
||||
play()
|
||||
|
||||
func setLoc(loc: Data.Location):
|
||||
currentLoc.index = 0
|
||||
stop()
|
||||
match loc:
|
||||
Data.Location.MAINMENU:
|
||||
currentLoc = mainMenuPlaylist
|
||||
Data.Location.CREDITS:
|
||||
currentLoc = creditsPlaylist
|
||||
Data.Location.TAVERN:
|
||||
currentLoc = tavernPlaylist
|
||||
Data.Location.ARENA:
|
||||
currentLoc = arenaPlaylist
|
||||
Data.Location.DEAD:
|
||||
pass
|
||||
_onSongFinished()
|
BIN
Sound/Music/Achievement.mp3
Normal file
19
Sound/Music/Achievement.mp3.import
Normal file
@ -0,0 +1,19 @@
|
||||
[remap]
|
||||
|
||||
importer="mp3"
|
||||
type="AudioStreamMP3"
|
||||
uid="uid://cmptaarwp65jy"
|
||||
path="res://.godot/imported/Achievement.mp3-eb3085a53a9912a2e6ee74c8da57bc57.mp3str"
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://Sound/Music/Achievement.mp3"
|
||||
dest_files=["res://.godot/imported/Achievement.mp3-eb3085a53a9912a2e6ee74c8da57bc57.mp3str"]
|
||||
|
||||
[params]
|
||||
|
||||
loop=false
|
||||
loop_offset=0
|
||||
bpm=0
|
||||
beat_count=0
|
||||
bar_beats=4
|
BIN
Sound/Music/Borgar.ogg
Normal file
19
Sound/Music/Borgar.ogg.import
Normal file
@ -0,0 +1,19 @@
|
||||
[remap]
|
||||
|
||||
importer="oggvorbisstr"
|
||||
type="AudioStreamOggVorbis"
|
||||
uid="uid://d3f5ohpbcciip"
|
||||
path="res://.godot/imported/Borgar.ogg-db00fbff923965ab1a902d7a9caf7b1b.oggvorbisstr"
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://Sound/Music/Borgar.ogg"
|
||||
dest_files=["res://.godot/imported/Borgar.ogg-db00fbff923965ab1a902d7a9caf7b1b.oggvorbisstr"]
|
||||
|
||||
[params]
|
||||
|
||||
loop=false
|
||||
loop_offset=0
|
||||
bpm=0
|
||||
beat_count=0
|
||||
bar_beats=4
|
BIN
Sound/Music/Pathfinder.mp3
Normal file
19
Sound/Music/Pathfinder.mp3.import
Normal file
@ -0,0 +1,19 @@
|
||||
[remap]
|
||||
|
||||
importer="mp3"
|
||||
type="AudioStreamMP3"
|
||||
uid="uid://cut0fxcetc4da"
|
||||
path="res://.godot/imported/Pathfinder.mp3-0a5d9f9874345df64316d87fe44d7849.mp3str"
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://Sound/Music/Pathfinder.mp3"
|
||||
dest_files=["res://.godot/imported/Pathfinder.mp3-0a5d9f9874345df64316d87fe44d7849.mp3str"]
|
||||
|
||||
[params]
|
||||
|
||||
loop=false
|
||||
loop_offset=0
|
||||
bpm=0
|
||||
beat_count=0
|
||||
bar_beats=4
|
BIN
Sound/Music/Wanderer.mp3
Normal file
19
Sound/Music/Wanderer.mp3.import
Normal file
@ -0,0 +1,19 @@
|
||||
[remap]
|
||||
|
||||
importer="mp3"
|
||||
type="AudioStreamMP3"
|
||||
uid="uid://cunvnj1r47u1y"
|
||||
path="res://.godot/imported/Wanderer.mp3-b942f1347fe8fbd5f59e85b2df0901f7.mp3str"
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://Sound/Music/Wanderer.mp3"
|
||||
dest_files=["res://.godot/imported/Wanderer.mp3-b942f1347fe8fbd5f59e85b2df0901f7.mp3str"]
|
||||
|
||||
[params]
|
||||
|
||||
loop=false
|
||||
loop_offset=0
|
||||
bpm=0
|
||||
beat_count=0
|
||||
bar_beats=4
|
After Width: | Height: | Size: 2.9 KiB |
@ -0,0 +1,34 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://cwmiomdd1dsgm"
|
||||
path="res://.godot/imported/Ability_icon (1).png-7ac207e562aa8a75b7fac5461382228e.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://Sprites/UI/Edinnu_UI_asset_pack/Ability_icons/Ability_icon (1).png"
|
||||
dest_files=["res://.godot/imported/Ability_icon (1).png-7ac207e562aa8a75b7fac5461382228e.ctex"]
|
||||
|
||||
[params]
|
||||
|
||||
compress/mode=0
|
||||
compress/high_quality=false
|
||||
compress/lossy_quality=0.7
|
||||
compress/hdr_compression=1
|
||||
compress/normal_map=0
|
||||
compress/channel_pack=0
|
||||
mipmaps/generate=false
|
||||
mipmaps/limit=-1
|
||||
roughness/mode=0
|
||||
roughness/src_normal=""
|
||||
process/fix_alpha_border=true
|
||||
process/premult_alpha=false
|
||||
process/normal_map_invert_y=false
|
||||
process/hdr_as_srgb=false
|
||||
process/hdr_clamp_exposure=false
|
||||
process/size_limit=0
|
||||
detect_3d/compress_to=1
|
After Width: | Height: | Size: 3.7 KiB |
@ -0,0 +1,34 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://coyu17pvwmse8"
|
||||
path="res://.godot/imported/Ability_icon (10).png-9679abc6f1676d095341b5d09075dec4.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://Sprites/UI/Edinnu_UI_asset_pack/Ability_icons/Ability_icon (10).png"
|
||||
dest_files=["res://.godot/imported/Ability_icon (10).png-9679abc6f1676d095341b5d09075dec4.ctex"]
|
||||
|
||||
[params]
|
||||
|
||||
compress/mode=0
|
||||
compress/high_quality=false
|
||||
compress/lossy_quality=0.7
|
||||
compress/hdr_compression=1
|
||||
compress/normal_map=0
|
||||
compress/channel_pack=0
|
||||
mipmaps/generate=false
|
||||
mipmaps/limit=-1
|
||||
roughness/mode=0
|
||||
roughness/src_normal=""
|
||||
process/fix_alpha_border=true
|
||||
process/premult_alpha=false
|
||||
process/normal_map_invert_y=false
|
||||
process/hdr_as_srgb=false
|
||||
process/hdr_clamp_exposure=false
|
||||
process/size_limit=0
|
||||
detect_3d/compress_to=1
|
After Width: | Height: | Size: 2.8 KiB |
@ -0,0 +1,34 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://bmavcs1oltoow"
|
||||
path="res://.godot/imported/Ability_icon (11).png-14b35257e5d20e7079161005b5580400.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://Sprites/UI/Edinnu_UI_asset_pack/Ability_icons/Ability_icon (11).png"
|
||||
dest_files=["res://.godot/imported/Ability_icon (11).png-14b35257e5d20e7079161005b5580400.ctex"]
|
||||
|
||||
[params]
|
||||
|
||||
compress/mode=0
|
||||
compress/high_quality=false
|
||||
compress/lossy_quality=0.7
|
||||
compress/hdr_compression=1
|
||||
compress/normal_map=0
|
||||
compress/channel_pack=0
|
||||
mipmaps/generate=false
|
||||
mipmaps/limit=-1
|
||||
roughness/mode=0
|
||||
roughness/src_normal=""
|
||||
process/fix_alpha_border=true
|
||||
process/premult_alpha=false
|
||||
process/normal_map_invert_y=false
|
||||
process/hdr_as_srgb=false
|
||||
process/hdr_clamp_exposure=false
|
||||
process/size_limit=0
|
||||
detect_3d/compress_to=1
|
After Width: | Height: | Size: 2.8 KiB |
@ -0,0 +1,34 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://bilxmmysus8oj"
|
||||
path="res://.godot/imported/Ability_icon (12).png-da7d292e38f4df98cf3c9768b52e13c4.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://Sprites/UI/Edinnu_UI_asset_pack/Ability_icons/Ability_icon (12).png"
|
||||
dest_files=["res://.godot/imported/Ability_icon (12).png-da7d292e38f4df98cf3c9768b52e13c4.ctex"]
|
||||
|
||||
[params]
|
||||
|
||||
compress/mode=0
|
||||
compress/high_quality=false
|
||||
compress/lossy_quality=0.7
|
||||
compress/hdr_compression=1
|
||||
compress/normal_map=0
|
||||
compress/channel_pack=0
|
||||
mipmaps/generate=false
|
||||
mipmaps/limit=-1
|
||||
roughness/mode=0
|
||||
roughness/src_normal=""
|
||||
process/fix_alpha_border=true
|
||||
process/premult_alpha=false
|
||||
process/normal_map_invert_y=false
|
||||
process/hdr_as_srgb=false
|
||||
process/hdr_clamp_exposure=false
|
||||
process/size_limit=0
|
||||
detect_3d/compress_to=1
|
After Width: | Height: | Size: 2.8 KiB |
@ -0,0 +1,34 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://b3du8p1y8bb24"
|
||||
path="res://.godot/imported/Ability_icon (13).png-c143a13cc6a57162a198981ddf762909.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://Sprites/UI/Edinnu_UI_asset_pack/Ability_icons/Ability_icon (13).png"
|
||||
dest_files=["res://.godot/imported/Ability_icon (13).png-c143a13cc6a57162a198981ddf762909.ctex"]
|
||||
|
||||
[params]
|
||||
|
||||
compress/mode=0
|
||||
compress/high_quality=false
|
||||
compress/lossy_quality=0.7
|
||||
compress/hdr_compression=1
|
||||
compress/normal_map=0
|
||||
compress/channel_pack=0
|
||||
mipmaps/generate=false
|
||||
mipmaps/limit=-1
|
||||
roughness/mode=0
|
||||
roughness/src_normal=""
|
||||
process/fix_alpha_border=true
|
||||
process/premult_alpha=false
|
||||
process/normal_map_invert_y=false
|
||||
process/hdr_as_srgb=false
|
||||
process/hdr_clamp_exposure=false
|
||||
process/size_limit=0
|
||||
detect_3d/compress_to=1
|
After Width: | Height: | Size: 2.8 KiB |
@ -0,0 +1,34 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://qqowftnp38iw"
|
||||
path="res://.godot/imported/Ability_icon (14).png-ebd0cf27635f0de433305d4a5e393ab0.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://Sprites/UI/Edinnu_UI_asset_pack/Ability_icons/Ability_icon (14).png"
|
||||
dest_files=["res://.godot/imported/Ability_icon (14).png-ebd0cf27635f0de433305d4a5e393ab0.ctex"]
|
||||
|
||||
[params]
|
||||
|
||||
compress/mode=0
|
||||
compress/high_quality=false
|
||||
compress/lossy_quality=0.7
|
||||
compress/hdr_compression=1
|
||||
compress/normal_map=0
|
||||
compress/channel_pack=0
|
||||
mipmaps/generate=false
|
||||
mipmaps/limit=-1
|
||||
roughness/mode=0
|
||||
roughness/src_normal=""
|
||||
process/fix_alpha_border=true
|
||||
process/premult_alpha=false
|
||||
process/normal_map_invert_y=false
|
||||
process/hdr_as_srgb=false
|
||||
process/hdr_clamp_exposure=false
|
||||
process/size_limit=0
|
||||
detect_3d/compress_to=1
|
After Width: | Height: | Size: 3.7 KiB |
@ -0,0 +1,34 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://bm74shftc0ec5"
|
||||
path="res://.godot/imported/Ability_icon (15).png-dc9a98cb3612525cd91fd8f34cd99362.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://Sprites/UI/Edinnu_UI_asset_pack/Ability_icons/Ability_icon (15).png"
|
||||
dest_files=["res://.godot/imported/Ability_icon (15).png-dc9a98cb3612525cd91fd8f34cd99362.ctex"]
|
||||
|
||||
[params]
|
||||
|
||||
compress/mode=0
|
||||
compress/high_quality=false
|
||||
compress/lossy_quality=0.7
|
||||
compress/hdr_compression=1
|
||||
compress/normal_map=0
|
||||
compress/channel_pack=0
|
||||
mipmaps/generate=false
|
||||
mipmaps/limit=-1
|
||||
roughness/mode=0
|
||||
roughness/src_normal=""
|
||||
process/fix_alpha_border=true
|
||||
process/premult_alpha=false
|
||||
process/normal_map_invert_y=false
|
||||
process/hdr_as_srgb=false
|
||||
process/hdr_clamp_exposure=false
|
||||
process/size_limit=0
|
||||
detect_3d/compress_to=1
|
After Width: | Height: | Size: 2.8 KiB |
@ -0,0 +1,34 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://ceu850vbh4ys1"
|
||||
path="res://.godot/imported/Ability_icon (16).png-728d2d450c94aac86f63ad39304fe56c.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://Sprites/UI/Edinnu_UI_asset_pack/Ability_icons/Ability_icon (16).png"
|
||||
dest_files=["res://.godot/imported/Ability_icon (16).png-728d2d450c94aac86f63ad39304fe56c.ctex"]
|
||||
|
||||
[params]
|
||||
|
||||
compress/mode=0
|
||||
compress/high_quality=false
|
||||
compress/lossy_quality=0.7
|
||||
compress/hdr_compression=1
|
||||
compress/normal_map=0
|
||||
compress/channel_pack=0
|
||||
mipmaps/generate=false
|
||||
mipmaps/limit=-1
|
||||
roughness/mode=0
|
||||
roughness/src_normal=""
|
||||
process/fix_alpha_border=true
|
||||
process/premult_alpha=false
|
||||
process/normal_map_invert_y=false
|
||||
process/hdr_as_srgb=false
|
||||
process/hdr_clamp_exposure=false
|
||||
process/size_limit=0
|
||||
detect_3d/compress_to=1
|
After Width: | Height: | Size: 3.7 KiB |
@ -0,0 +1,34 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://xuadbenyadot"
|
||||
path="res://.godot/imported/Ability_icon (17).png-f7ab5e4d9a8d8afc54ca0a410c2b69b1.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://Sprites/UI/Edinnu_UI_asset_pack/Ability_icons/Ability_icon (17).png"
|
||||
dest_files=["res://.godot/imported/Ability_icon (17).png-f7ab5e4d9a8d8afc54ca0a410c2b69b1.ctex"]
|
||||
|
||||
[params]
|
||||
|
||||
compress/mode=0
|
||||
compress/high_quality=false
|
||||
compress/lossy_quality=0.7
|
||||
compress/hdr_compression=1
|
||||
compress/normal_map=0
|
||||
compress/channel_pack=0
|
||||
mipmaps/generate=false
|
||||
mipmaps/limit=-1
|
||||
roughness/mode=0
|
||||
roughness/src_normal=""
|
||||
process/fix_alpha_border=true
|
||||
process/premult_alpha=false
|
||||
process/normal_map_invert_y=false
|
||||
process/hdr_as_srgb=false
|
||||
process/hdr_clamp_exposure=false
|
||||
process/size_limit=0
|
||||
detect_3d/compress_to=1
|
After Width: | Height: | Size: 2.8 KiB |
@ -0,0 +1,34 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://d4k57rvrhmsw0"
|
||||
path="res://.godot/imported/Ability_icon (18).png-e0d2ab02a991774b491064385e7637a7.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://Sprites/UI/Edinnu_UI_asset_pack/Ability_icons/Ability_icon (18).png"
|
||||
dest_files=["res://.godot/imported/Ability_icon (18).png-e0d2ab02a991774b491064385e7637a7.ctex"]
|
||||
|
||||
[params]
|
||||
|
||||
compress/mode=0
|
||||
compress/high_quality=false
|
||||
compress/lossy_quality=0.7
|
||||
compress/hdr_compression=1
|
||||
compress/normal_map=0
|
||||
compress/channel_pack=0
|
||||
mipmaps/generate=false
|
||||
mipmaps/limit=-1
|
||||
roughness/mode=0
|
||||
roughness/src_normal=""
|
||||
process/fix_alpha_border=true
|
||||
process/premult_alpha=false
|
||||
process/normal_map_invert_y=false
|
||||
process/hdr_as_srgb=false
|
||||
process/hdr_clamp_exposure=false
|
||||
process/size_limit=0
|
||||
detect_3d/compress_to=1
|
After Width: | Height: | Size: 3.7 KiB |
@ -0,0 +1,34 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://47ig2n8q3wll"
|
||||
path="res://.godot/imported/Ability_icon (19).png-8c11218b47de41e3cdec795fdd3a46c1.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://Sprites/UI/Edinnu_UI_asset_pack/Ability_icons/Ability_icon (19).png"
|
||||
dest_files=["res://.godot/imported/Ability_icon (19).png-8c11218b47de41e3cdec795fdd3a46c1.ctex"]
|
||||
|
||||
[params]
|
||||
|
||||
compress/mode=0
|
||||
compress/high_quality=false
|
||||
compress/lossy_quality=0.7
|
||||
compress/hdr_compression=1
|
||||
compress/normal_map=0
|
||||
compress/channel_pack=0
|
||||
mipmaps/generate=false
|
||||
mipmaps/limit=-1
|
||||
roughness/mode=0
|
||||
roughness/src_normal=""
|
||||
process/fix_alpha_border=true
|
||||
process/premult_alpha=false
|
||||
process/normal_map_invert_y=false
|
||||
process/hdr_as_srgb=false
|
||||
process/hdr_clamp_exposure=false
|
||||
process/size_limit=0
|
||||
detect_3d/compress_to=1
|
After Width: | Height: | Size: 2.8 KiB |
@ -0,0 +1,34 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://c4ipair1ngkab"
|
||||
path="res://.godot/imported/Ability_icon (2).png-443db6d513990f1618703a19ff2137f1.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://Sprites/UI/Edinnu_UI_asset_pack/Ability_icons/Ability_icon (2).png"
|
||||
dest_files=["res://.godot/imported/Ability_icon (2).png-443db6d513990f1618703a19ff2137f1.ctex"]
|
||||
|
||||
[params]
|
||||
|
||||
compress/mode=0
|
||||
compress/high_quality=false
|
||||
compress/lossy_quality=0.7
|
||||
compress/hdr_compression=1
|
||||
compress/normal_map=0
|
||||
compress/channel_pack=0
|
||||
mipmaps/generate=false
|
||||
mipmaps/limit=-1
|
||||
roughness/mode=0
|
||||
roughness/src_normal=""
|
||||
process/fix_alpha_border=true
|
||||
process/premult_alpha=false
|
||||
process/normal_map_invert_y=false
|
||||
process/hdr_as_srgb=false
|
||||
process/hdr_clamp_exposure=false
|
||||
process/size_limit=0
|
||||
detect_3d/compress_to=1
|
After Width: | Height: | Size: 2.9 KiB |
@ -0,0 +1,34 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://b5eh7564eqsjd"
|
||||
path="res://.godot/imported/Ability_icon (20).png-d561bdf671b5e602926e8a004bb95e50.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://Sprites/UI/Edinnu_UI_asset_pack/Ability_icons/Ability_icon (20).png"
|
||||
dest_files=["res://.godot/imported/Ability_icon (20).png-d561bdf671b5e602926e8a004bb95e50.ctex"]
|
||||
|
||||
[params]
|
||||
|
||||
compress/mode=0
|
||||
compress/high_quality=false
|
||||
compress/lossy_quality=0.7
|
||||
compress/hdr_compression=1
|
||||
compress/normal_map=0
|
||||
compress/channel_pack=0
|
||||
mipmaps/generate=false
|
||||
mipmaps/limit=-1
|
||||
roughness/mode=0
|
||||
roughness/src_normal=""
|
||||
process/fix_alpha_border=true
|
||||
process/premult_alpha=false
|
||||
process/normal_map_invert_y=false
|
||||
process/hdr_as_srgb=false
|
||||
process/hdr_clamp_exposure=false
|
||||
process/size_limit=0
|
||||
detect_3d/compress_to=1
|
After Width: | Height: | Size: 3.1 KiB |
@ -0,0 +1,34 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://dsdu4wn80ltvj"
|
||||
path="res://.godot/imported/Ability_icon (21).png-623486615da14a86b45e983885eff804.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://Sprites/UI/Edinnu_UI_asset_pack/Ability_icons/Ability_icon (21).png"
|
||||
dest_files=["res://.godot/imported/Ability_icon (21).png-623486615da14a86b45e983885eff804.ctex"]
|
||||
|
||||
[params]
|
||||
|
||||
compress/mode=0
|
||||
compress/high_quality=false
|
||||
compress/lossy_quality=0.7
|
||||
compress/hdr_compression=1
|
||||
compress/normal_map=0
|
||||
compress/channel_pack=0
|
||||
mipmaps/generate=false
|
||||
mipmaps/limit=-1
|
||||
roughness/mode=0
|
||||
roughness/src_normal=""
|
||||
process/fix_alpha_border=true
|
||||
process/premult_alpha=false
|
||||
process/normal_map_invert_y=false
|
||||
process/hdr_as_srgb=false
|
||||
process/hdr_clamp_exposure=false
|
||||
process/size_limit=0
|
||||
detect_3d/compress_to=1
|
After Width: | Height: | Size: 3.1 KiB |
@ -0,0 +1,34 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://b5m2m1ioyso8k"
|
||||
path="res://.godot/imported/Ability_icon (22).png-4e1b3e2504501566a2426c6dbcbce484.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://Sprites/UI/Edinnu_UI_asset_pack/Ability_icons/Ability_icon (22).png"
|
||||
dest_files=["res://.godot/imported/Ability_icon (22).png-4e1b3e2504501566a2426c6dbcbce484.ctex"]
|
||||
|
||||
[params]
|
||||
|
||||
compress/mode=0
|
||||
compress/high_quality=false
|
||||
compress/lossy_quality=0.7
|
||||
compress/hdr_compression=1
|
||||
compress/normal_map=0
|
||||
compress/channel_pack=0
|
||||
mipmaps/generate=false
|
||||
mipmaps/limit=-1
|
||||
roughness/mode=0
|
||||
roughness/src_normal=""
|
||||
process/fix_alpha_border=true
|
||||
process/premult_alpha=false
|
||||
process/normal_map_invert_y=false
|
||||
process/hdr_as_srgb=false
|
||||
process/hdr_clamp_exposure=false
|
||||
process/size_limit=0
|
||||
detect_3d/compress_to=1
|
After Width: | Height: | Size: 3.0 KiB |
@ -0,0 +1,34 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://bwv5l62g235kc"
|
||||
path="res://.godot/imported/Ability_icon (23).png-af9b1a31652a376dbd5579fa1b9ae9d3.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://Sprites/UI/Edinnu_UI_asset_pack/Ability_icons/Ability_icon (23).png"
|
||||
dest_files=["res://.godot/imported/Ability_icon (23).png-af9b1a31652a376dbd5579fa1b9ae9d3.ctex"]
|
||||
|
||||
[params]
|
||||
|
||||
compress/mode=0
|
||||
compress/high_quality=false
|
||||
compress/lossy_quality=0.7
|
||||
compress/hdr_compression=1
|
||||
compress/normal_map=0
|
||||
compress/channel_pack=0
|
||||
mipmaps/generate=false
|
||||
mipmaps/limit=-1
|
||||
roughness/mode=0
|
||||
roughness/src_normal=""
|
||||
process/fix_alpha_border=true
|
||||
process/premult_alpha=false
|
||||
process/normal_map_invert_y=false
|
||||
process/hdr_as_srgb=false
|
||||
process/hdr_clamp_exposure=false
|
||||
process/size_limit=0
|
||||
detect_3d/compress_to=1
|
After Width: | Height: | Size: 3.1 KiB |
@ -0,0 +1,34 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://b70pu421qtjr4"
|
||||
path="res://.godot/imported/Ability_icon (24).png-8470cadd78331c6c3a0f17f3766685ed.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://Sprites/UI/Edinnu_UI_asset_pack/Ability_icons/Ability_icon (24).png"
|
||||
dest_files=["res://.godot/imported/Ability_icon (24).png-8470cadd78331c6c3a0f17f3766685ed.ctex"]
|
||||
|
||||
[params]
|
||||
|
||||
compress/mode=0
|
||||
compress/high_quality=false
|
||||
compress/lossy_quality=0.7
|
||||
compress/hdr_compression=1
|
||||
compress/normal_map=0
|
||||
compress/channel_pack=0
|
||||
mipmaps/generate=false
|
||||
mipmaps/limit=-1
|
||||
roughness/mode=0
|
||||
roughness/src_normal=""
|
||||
process/fix_alpha_border=true
|
||||
process/premult_alpha=false
|
||||
process/normal_map_invert_y=false
|
||||
process/hdr_as_srgb=false
|
||||
process/hdr_clamp_exposure=false
|
||||
process/size_limit=0
|
||||
detect_3d/compress_to=1
|
After Width: | Height: | Size: 3.1 KiB |
@ -0,0 +1,34 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://bbs5waglmn0ww"
|
||||
path="res://.godot/imported/Ability_icon (25).png-ee293dda5c4e62d494df3f4b9b2e739a.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://Sprites/UI/Edinnu_UI_asset_pack/Ability_icons/Ability_icon (25).png"
|
||||
dest_files=["res://.godot/imported/Ability_icon (25).png-ee293dda5c4e62d494df3f4b9b2e739a.ctex"]
|
||||
|
||||
[params]
|
||||
|
||||
compress/mode=0
|
||||
compress/high_quality=false
|
||||
compress/lossy_quality=0.7
|
||||
compress/hdr_compression=1
|
||||
compress/normal_map=0
|
||||
compress/channel_pack=0
|
||||
mipmaps/generate=false
|
||||
mipmaps/limit=-1
|
||||
roughness/mode=0
|
||||
roughness/src_normal=""
|
||||
process/fix_alpha_border=true
|
||||
process/premult_alpha=false
|
||||
process/normal_map_invert_y=false
|
||||
process/hdr_as_srgb=false
|
||||
process/hdr_clamp_exposure=false
|
||||
process/size_limit=0
|
||||
detect_3d/compress_to=1
|
After Width: | Height: | Size: 3.1 KiB |
@ -0,0 +1,34 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://c04y612ber0i8"
|
||||
path="res://.godot/imported/Ability_icon (26).png-7bd30945673f5929265221bc3999d0e8.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://Sprites/UI/Edinnu_UI_asset_pack/Ability_icons/Ability_icon (26).png"
|
||||
dest_files=["res://.godot/imported/Ability_icon (26).png-7bd30945673f5929265221bc3999d0e8.ctex"]
|
||||
|
||||
[params]
|
||||
|
||||
compress/mode=0
|
||||
compress/high_quality=false
|
||||
compress/lossy_quality=0.7
|
||||
compress/hdr_compression=1
|
||||
compress/normal_map=0
|
||||
compress/channel_pack=0
|
||||
mipmaps/generate=false
|
||||
mipmaps/limit=-1
|
||||
roughness/mode=0
|
||||
roughness/src_normal=""
|
||||
process/fix_alpha_border=true
|
||||
process/premult_alpha=false
|
||||
process/normal_map_invert_y=false
|
||||
process/hdr_as_srgb=false
|
||||
process/hdr_clamp_exposure=false
|
||||
process/size_limit=0
|
||||
detect_3d/compress_to=1
|
After Width: | Height: | Size: 3.1 KiB |
@ -0,0 +1,34 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://86qq3w17lhhw"
|
||||
path="res://.godot/imported/Ability_icon (27).png-48610267861fcc20f680f2f4d3a3aaba.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://Sprites/UI/Edinnu_UI_asset_pack/Ability_icons/Ability_icon (27).png"
|
||||
dest_files=["res://.godot/imported/Ability_icon (27).png-48610267861fcc20f680f2f4d3a3aaba.ctex"]
|
||||
|
||||
[params]
|
||||
|
||||
compress/mode=0
|
||||
compress/high_quality=false
|
||||
compress/lossy_quality=0.7
|
||||
compress/hdr_compression=1
|
||||
compress/normal_map=0
|
||||
compress/channel_pack=0
|
||||
mipmaps/generate=false
|
||||
mipmaps/limit=-1
|
||||
roughness/mode=0
|
||||
roughness/src_normal=""
|
||||
process/fix_alpha_border=true
|
||||
process/premult_alpha=false
|
||||
process/normal_map_invert_y=false
|
||||
process/hdr_as_srgb=false
|
||||
process/hdr_clamp_exposure=false
|
||||
process/size_limit=0
|
||||
detect_3d/compress_to=1
|
After Width: | Height: | Size: 2.9 KiB |
@ -0,0 +1,34 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://c52qqgoqsp5vx"
|
||||
path="res://.godot/imported/Ability_icon (28).png-c50e0dddc296c12f20776cf1a8bd780c.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://Sprites/UI/Edinnu_UI_asset_pack/Ability_icons/Ability_icon (28).png"
|
||||
dest_files=["res://.godot/imported/Ability_icon (28).png-c50e0dddc296c12f20776cf1a8bd780c.ctex"]
|
||||
|
||||
[params]
|
||||
|
||||
compress/mode=0
|
||||
compress/high_quality=false
|
||||
compress/lossy_quality=0.7
|
||||
compress/hdr_compression=1
|
||||
compress/normal_map=0
|
||||
compress/channel_pack=0
|
||||
mipmaps/generate=false
|
||||
mipmaps/limit=-1
|
||||
roughness/mode=0
|
||||
roughness/src_normal=""
|
||||
process/fix_alpha_border=true
|
||||
process/premult_alpha=false
|
||||
process/normal_map_invert_y=false
|
||||
process/hdr_as_srgb=false
|
||||
process/hdr_clamp_exposure=false
|
||||
process/size_limit=0
|
||||
detect_3d/compress_to=1
|
After Width: | Height: | Size: 3.1 KiB |
@ -0,0 +1,34 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://brre8empj6oso"
|
||||
path="res://.godot/imported/Ability_icon (29).png-eaabf17aa514ce041799657034041a69.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://Sprites/UI/Edinnu_UI_asset_pack/Ability_icons/Ability_icon (29).png"
|
||||
dest_files=["res://.godot/imported/Ability_icon (29).png-eaabf17aa514ce041799657034041a69.ctex"]
|
||||
|
||||
[params]
|
||||
|
||||
compress/mode=0
|
||||
compress/high_quality=false
|
||||
compress/lossy_quality=0.7
|
||||
compress/hdr_compression=1
|
||||
compress/normal_map=0
|
||||
compress/channel_pack=0
|
||||
mipmaps/generate=false
|
||||
mipmaps/limit=-1
|
||||
roughness/mode=0
|
||||
roughness/src_normal=""
|
||||
process/fix_alpha_border=true
|
||||
process/premult_alpha=false
|
||||
process/normal_map_invert_y=false
|
||||
process/hdr_as_srgb=false
|
||||
process/hdr_clamp_exposure=false
|
||||
process/size_limit=0
|
||||
detect_3d/compress_to=1
|
After Width: | Height: | Size: 2.8 KiB |
@ -0,0 +1,34 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://cedto0ink1dj2"
|
||||
path="res://.godot/imported/Ability_icon (3).png-cd9b658128b2b2894de8d5e6950a3a25.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://Sprites/UI/Edinnu_UI_asset_pack/Ability_icons/Ability_icon (3).png"
|
||||
dest_files=["res://.godot/imported/Ability_icon (3).png-cd9b658128b2b2894de8d5e6950a3a25.ctex"]
|
||||
|
||||
[params]
|
||||
|
||||
compress/mode=0
|
||||
compress/high_quality=false
|
||||
compress/lossy_quality=0.7
|
||||
compress/hdr_compression=1
|
||||
compress/normal_map=0
|
||||
compress/channel_pack=0
|
||||
mipmaps/generate=false
|
||||
mipmaps/limit=-1
|
||||
roughness/mode=0
|
||||
roughness/src_normal=""
|
||||
process/fix_alpha_border=true
|
||||
process/premult_alpha=false
|
||||
process/normal_map_invert_y=false
|
||||
process/hdr_as_srgb=false
|
||||
process/hdr_clamp_exposure=false
|
||||
process/size_limit=0
|
||||
detect_3d/compress_to=1
|
After Width: | Height: | Size: 3.1 KiB |
@ -0,0 +1,34 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://cvrqhfx2qj046"
|
||||
path="res://.godot/imported/Ability_icon (30).png-920bc8d6d1e0b0dc63051eb5a58cce2b.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://Sprites/UI/Edinnu_UI_asset_pack/Ability_icons/Ability_icon (30).png"
|
||||
dest_files=["res://.godot/imported/Ability_icon (30).png-920bc8d6d1e0b0dc63051eb5a58cce2b.ctex"]
|
||||
|
||||
[params]
|
||||
|
||||
compress/mode=0
|
||||
compress/high_quality=false
|
||||
compress/lossy_quality=0.7
|
||||
compress/hdr_compression=1
|
||||
compress/normal_map=0
|
||||
compress/channel_pack=0
|
||||
mipmaps/generate=false
|
||||
mipmaps/limit=-1
|
||||
roughness/mode=0
|
||||
roughness/src_normal=""
|
||||
process/fix_alpha_border=true
|
||||
process/premult_alpha=false
|
||||
process/normal_map_invert_y=false
|
||||
process/hdr_as_srgb=false
|
||||
process/hdr_clamp_exposure=false
|
||||
process/size_limit=0
|
||||
detect_3d/compress_to=1
|
After Width: | Height: | Size: 3.1 KiB |
@ -0,0 +1,34 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://cbyvyveqph2o5"
|
||||
path="res://.godot/imported/Ability_icon (31).png-5bf5d79a01b7d8e03b377e791aa0287d.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://Sprites/UI/Edinnu_UI_asset_pack/Ability_icons/Ability_icon (31).png"
|
||||
dest_files=["res://.godot/imported/Ability_icon (31).png-5bf5d79a01b7d8e03b377e791aa0287d.ctex"]
|
||||
|
||||
[params]
|
||||
|
||||
compress/mode=0
|
||||
compress/high_quality=false
|
||||
compress/lossy_quality=0.7
|
||||
compress/hdr_compression=1
|
||||
compress/normal_map=0
|
||||
compress/channel_pack=0
|
||||
mipmaps/generate=false
|
||||
mipmaps/limit=-1
|
||||
roughness/mode=0
|
||||
roughness/src_normal=""
|
||||
process/fix_alpha_border=true
|
||||
process/premult_alpha=false
|
||||
process/normal_map_invert_y=false
|
||||
process/hdr_as_srgb=false
|
||||
process/hdr_clamp_exposure=false
|
||||
process/size_limit=0
|
||||
detect_3d/compress_to=1
|
After Width: | Height: | Size: 3.1 KiB |
@ -0,0 +1,34 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://dfsm8fko1flbq"
|
||||
path="res://.godot/imported/Ability_icon (32).png-bda2a784796dc9c6b320dd484f19983e.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://Sprites/UI/Edinnu_UI_asset_pack/Ability_icons/Ability_icon (32).png"
|
||||
dest_files=["res://.godot/imported/Ability_icon (32).png-bda2a784796dc9c6b320dd484f19983e.ctex"]
|
||||
|
||||
[params]
|
||||
|
||||
compress/mode=0
|
||||
compress/high_quality=false
|
||||
compress/lossy_quality=0.7
|
||||
compress/hdr_compression=1
|
||||
compress/normal_map=0
|
||||
compress/channel_pack=0
|
||||
mipmaps/generate=false
|
||||
mipmaps/limit=-1
|
||||
roughness/mode=0
|
||||
roughness/src_normal=""
|
||||
process/fix_alpha_border=true
|
||||
process/premult_alpha=false
|
||||
process/normal_map_invert_y=false
|
||||
process/hdr_as_srgb=false
|
||||
process/hdr_clamp_exposure=false
|
||||
process/size_limit=0
|
||||
detect_3d/compress_to=1
|
After Width: | Height: | Size: 3.1 KiB |
@ -0,0 +1,34 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://cwsc0hh37vtb2"
|
||||
path="res://.godot/imported/Ability_icon (33).png-e3b677129e863ed1e9cf7d5ad5e33fa4.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://Sprites/UI/Edinnu_UI_asset_pack/Ability_icons/Ability_icon (33).png"
|
||||
dest_files=["res://.godot/imported/Ability_icon (33).png-e3b677129e863ed1e9cf7d5ad5e33fa4.ctex"]
|
||||
|
||||
[params]
|
||||
|
||||
compress/mode=0
|
||||
compress/high_quality=false
|
||||
compress/lossy_quality=0.7
|
||||
compress/hdr_compression=1
|
||||
compress/normal_map=0
|
||||
compress/channel_pack=0
|
||||
mipmaps/generate=false
|
||||
mipmaps/limit=-1
|
||||
roughness/mode=0
|
||||
roughness/src_normal=""
|
||||
process/fix_alpha_border=true
|
||||
process/premult_alpha=false
|
||||
process/normal_map_invert_y=false
|
||||
process/hdr_as_srgb=false
|
||||
process/hdr_clamp_exposure=false
|
||||
process/size_limit=0
|
||||
detect_3d/compress_to=1
|
After Width: | Height: | Size: 3.7 KiB |
@ -0,0 +1,34 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://bscj30bwtjdqa"
|
||||
path="res://.godot/imported/Ability_icon (4).png-af4821be1b7626b0ff18c2de90993576.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://Sprites/UI/Edinnu_UI_asset_pack/Ability_icons/Ability_icon (4).png"
|
||||
dest_files=["res://.godot/imported/Ability_icon (4).png-af4821be1b7626b0ff18c2de90993576.ctex"]
|
||||
|
||||
[params]
|
||||
|
||||
compress/mode=0
|
||||
compress/high_quality=false
|
||||
compress/lossy_quality=0.7
|
||||
compress/hdr_compression=1
|
||||
compress/normal_map=0
|
||||
compress/channel_pack=0
|
||||
mipmaps/generate=false
|
||||
mipmaps/limit=-1
|
||||
roughness/mode=0
|
||||
roughness/src_normal=""
|
||||
process/fix_alpha_border=true
|
||||
process/premult_alpha=false
|
||||
process/normal_map_invert_y=false
|
||||
process/hdr_as_srgb=false
|
||||
process/hdr_clamp_exposure=false
|
||||
process/size_limit=0
|
||||
detect_3d/compress_to=1
|
After Width: | Height: | Size: 2.8 KiB |
@ -0,0 +1,34 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://bhlb5fm75r6k5"
|
||||
path="res://.godot/imported/Ability_icon (5).png-75b9e8ed55eb425f2b0b1adec92d1c3d.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://Sprites/UI/Edinnu_UI_asset_pack/Ability_icons/Ability_icon (5).png"
|
||||
dest_files=["res://.godot/imported/Ability_icon (5).png-75b9e8ed55eb425f2b0b1adec92d1c3d.ctex"]
|
||||
|
||||
[params]
|
||||
|
||||
compress/mode=0
|
||||
compress/high_quality=false
|
||||
compress/lossy_quality=0.7
|
||||
compress/hdr_compression=1
|
||||
compress/normal_map=0
|
||||
compress/channel_pack=0
|
||||
mipmaps/generate=false
|
||||
mipmaps/limit=-1
|
||||
roughness/mode=0
|
||||
roughness/src_normal=""
|
||||
process/fix_alpha_border=true
|
||||
process/premult_alpha=false
|
||||
process/normal_map_invert_y=false
|
||||
process/hdr_as_srgb=false
|
||||
process/hdr_clamp_exposure=false
|
||||
process/size_limit=0
|
||||
detect_3d/compress_to=1
|
After Width: | Height: | Size: 3.7 KiB |
@ -0,0 +1,34 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://dkrqv33sxw8sr"
|
||||
path="res://.godot/imported/Ability_icon (6).png-8858ecda26e79ef063b744aa4297bb86.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://Sprites/UI/Edinnu_UI_asset_pack/Ability_icons/Ability_icon (6).png"
|
||||
dest_files=["res://.godot/imported/Ability_icon (6).png-8858ecda26e79ef063b744aa4297bb86.ctex"]
|
||||
|
||||
[params]
|
||||
|
||||
compress/mode=0
|
||||
compress/high_quality=false
|
||||
compress/lossy_quality=0.7
|
||||
compress/hdr_compression=1
|
||||
compress/normal_map=0
|
||||
compress/channel_pack=0
|
||||
mipmaps/generate=false
|
||||
mipmaps/limit=-1
|
||||
roughness/mode=0
|
||||
roughness/src_normal=""
|
||||
process/fix_alpha_border=true
|
||||
process/premult_alpha=false
|
||||
process/normal_map_invert_y=false
|
||||
process/hdr_as_srgb=false
|
||||
process/hdr_clamp_exposure=false
|
||||
process/size_limit=0
|
||||
detect_3d/compress_to=1
|
After Width: | Height: | Size: 2.8 KiB |
@ -0,0 +1,34 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://dw3enapr80y85"
|
||||
path="res://.godot/imported/Ability_icon (7).png-31dd5899f439065e97fd41ebe4a73dc1.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://Sprites/UI/Edinnu_UI_asset_pack/Ability_icons/Ability_icon (7).png"
|
||||
dest_files=["res://.godot/imported/Ability_icon (7).png-31dd5899f439065e97fd41ebe4a73dc1.ctex"]
|
||||
|
||||
[params]
|
||||
|
||||
compress/mode=0
|
||||
compress/high_quality=false
|
||||
compress/lossy_quality=0.7
|
||||
compress/hdr_compression=1
|
||||
compress/normal_map=0
|
||||
compress/channel_pack=0
|
||||
mipmaps/generate=false
|
||||
mipmaps/limit=-1
|
||||
roughness/mode=0
|
||||
roughness/src_normal=""
|
||||
process/fix_alpha_border=true
|
||||
process/premult_alpha=false
|
||||
process/normal_map_invert_y=false
|
||||
process/hdr_as_srgb=false
|
||||
process/hdr_clamp_exposure=false
|
||||
process/size_limit=0
|
||||
detect_3d/compress_to=1
|
After Width: | Height: | Size: 2.9 KiB |
@ -0,0 +1,34 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://d237aavytux4o"
|
||||
path="res://.godot/imported/Ability_icon (8).png-6e6d89884f115a98a24b672add0b842d.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://Sprites/UI/Edinnu_UI_asset_pack/Ability_icons/Ability_icon (8).png"
|
||||
dest_files=["res://.godot/imported/Ability_icon (8).png-6e6d89884f115a98a24b672add0b842d.ctex"]
|
||||
|
||||
[params]
|
||||
|
||||
compress/mode=0
|
||||
compress/high_quality=false
|
||||
compress/lossy_quality=0.7
|
||||
compress/hdr_compression=1
|
||||
compress/normal_map=0
|
||||
compress/channel_pack=0
|
||||
mipmaps/generate=false
|
||||
mipmaps/limit=-1
|
||||
roughness/mode=0
|
||||
roughness/src_normal=""
|
||||
process/fix_alpha_border=true
|
||||
process/premult_alpha=false
|
||||
process/normal_map_invert_y=false
|
||||
process/hdr_as_srgb=false
|
||||
process/hdr_clamp_exposure=false
|
||||
process/size_limit=0
|
||||
detect_3d/compress_to=1
|
After Width: | Height: | Size: 2.8 KiB |
@ -0,0 +1,34 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://bi7vmawbmsn1n"
|
||||
path="res://.godot/imported/Ability_icon (9).png-17b761312290445ff344dab921fb5b9a.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://Sprites/UI/Edinnu_UI_asset_pack/Ability_icons/Ability_icon (9).png"
|
||||
dest_files=["res://.godot/imported/Ability_icon (9).png-17b761312290445ff344dab921fb5b9a.ctex"]
|
||||
|
||||
[params]
|
||||
|
||||
compress/mode=0
|
||||
compress/high_quality=false
|
||||
compress/lossy_quality=0.7
|
||||
compress/hdr_compression=1
|
||||
compress/normal_map=0
|
||||
compress/channel_pack=0
|
||||
mipmaps/generate=false
|
||||
mipmaps/limit=-1
|
||||
roughness/mode=0
|
||||
roughness/src_normal=""
|
||||
process/fix_alpha_border=true
|
||||
process/premult_alpha=false
|
||||
process/normal_map_invert_y=false
|
||||
process/hdr_as_srgb=false
|
||||
process/hdr_clamp_exposure=false
|
||||
process/size_limit=0
|
||||
detect_3d/compress_to=1
|
BIN
Sprites/UI/Edinnu_UI_asset_pack/Arrows/Arrow (1).png
Normal file
After Width: | Height: | Size: 2.7 KiB |
34
Sprites/UI/Edinnu_UI_asset_pack/Arrows/Arrow (1).png.import
Normal file
@ -0,0 +1,34 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://bkac7oranv2x1"
|
||||
path="res://.godot/imported/Arrow (1).png-6c698ba6513976b8c49df597df5fd813.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://Sprites/UI/Edinnu_UI_asset_pack/Arrows/Arrow (1).png"
|
||||
dest_files=["res://.godot/imported/Arrow (1).png-6c698ba6513976b8c49df597df5fd813.ctex"]
|
||||
|
||||
[params]
|
||||
|
||||
compress/mode=0
|
||||
compress/high_quality=false
|
||||
compress/lossy_quality=0.7
|
||||
compress/hdr_compression=1
|
||||
compress/normal_map=0
|
||||
compress/channel_pack=0
|
||||
mipmaps/generate=false
|
||||
mipmaps/limit=-1
|
||||
roughness/mode=0
|
||||
roughness/src_normal=""
|
||||
process/fix_alpha_border=true
|
||||
process/premult_alpha=false
|
||||
process/normal_map_invert_y=false
|
||||
process/hdr_as_srgb=false
|
||||
process/hdr_clamp_exposure=false
|
||||
process/size_limit=0
|
||||
detect_3d/compress_to=1
|