chore: restructured project
All checks were successful
Coding Quality / Build and analyze (pull_request) Successful in 2m10s
All checks were successful
Coding Quality / Build and analyze (pull_request) Successful in 2m10s
This commit is contained in:
BIN
Core/Assets/PixelPlanets/a-moon.png
Normal file
BIN
Core/Assets/PixelPlanets/a-moon.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 533 B |
40
Core/Assets/PixelPlanets/a-moon.png.import
Normal file
40
Core/Assets/PixelPlanets/a-moon.png.import
Normal file
@@ -0,0 +1,40 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://dng410xo7qqfv"
|
||||
path="res://.godot/imported/a-moon.png-54f8d7810db3be4679f0fc14b17f0770.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://Core/Assets/PixelPlanets/a-moon.png"
|
||||
dest_files=["res://.godot/imported/a-moon.png-54f8d7810db3be4679f0fc14b17f0770.ctex"]
|
||||
|
||||
[params]
|
||||
|
||||
compress/mode=0
|
||||
compress/high_quality=false
|
||||
compress/lossy_quality=0.7
|
||||
compress/uastc_level=0
|
||||
compress/rdo_quality_loss=0.0
|
||||
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/channel_remap/red=0
|
||||
process/channel_remap/green=1
|
||||
process/channel_remap/blue=2
|
||||
process/channel_remap/alpha=3
|
||||
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
|
||||
6
Core/Components/back_to_main.gd
Normal file
6
Core/Components/back_to_main.gd
Normal file
@@ -0,0 +1,6 @@
|
||||
extends Node
|
||||
var main_menue: PackedScene = preload("res://main.tscn")
|
||||
|
||||
func _input(event: InputEvent) -> void:
|
||||
if event.is_action_pressed("main_menue"):
|
||||
get_tree().change_scene_to_packed(main_menue)
|
||||
1
Core/Components/back_to_main.gd.uid
Normal file
1
Core/Components/back_to_main.gd.uid
Normal file
@@ -0,0 +1 @@
|
||||
uid://c6n4axv3eoguq
|
||||
12
Core/Components/open_level_component.gd
Normal file
12
Core/Components/open_level_component.gd
Normal file
@@ -0,0 +1,12 @@
|
||||
extends Node
|
||||
class_name OpenLevelComponent
|
||||
|
||||
@onready var button: Button = get_parent() as Button
|
||||
@export var level:PackedScene
|
||||
|
||||
func _ready() -> void:
|
||||
button.pressed.connect(_on_button_pressed)
|
||||
button.name = button.text
|
||||
|
||||
func _on_button_pressed() -> void:
|
||||
get_tree().change_scene_to_packed(level)
|
||||
1
Core/Components/open_level_component.gd.uid
Normal file
1
Core/Components/open_level_component.gd.uid
Normal file
@@ -0,0 +1 @@
|
||||
uid://bel5yfuiqithe
|
||||
14
Core/Components/quit_game_component.gd
Normal file
14
Core/Components/quit_game_component.gd
Normal file
@@ -0,0 +1,14 @@
|
||||
extends Node
|
||||
|
||||
class_name QuitGame
|
||||
|
||||
@onready var button: Button = get_parent() as Button
|
||||
|
||||
|
||||
func _ready() -> void:
|
||||
button.pressed.connect(_on_button_pressed)
|
||||
button.name = button.text
|
||||
|
||||
|
||||
func _on_button_pressed() -> void:
|
||||
get_tree().quit(0)
|
||||
1
Core/Components/quit_game_component.gd.uid
Normal file
1
Core/Components/quit_game_component.gd.uid
Normal file
@@ -0,0 +1 @@
|
||||
uid://lh1hhx4q8nlu
|
||||
Reference in New Issue
Block a user