-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
8d97995
commit 3fc61c8
Showing
74 changed files
with
1,372 additions
and
2 deletions.
There are no files selected for viewing
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
When you open a project, move the addons folder into your project! |
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file.
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
# Normalize EOL for all files that Git considers text files. | ||
* text=auto eol=lf |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
# Godot 4+ specific ignores | ||
.godot/ |
40 changes: 40 additions & 0 deletions
40
XanEngineSource/3.6/PF3.6/base/xanbase/addons/XanEngine/XanEditorPlugin.gd
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
@tool | ||
extends EditorPlugin | ||
|
||
|
||
const MainPanel: PackedScene = preload("res://addons/XanEngine/studio/main_panel.tscn") | ||
|
||
var main_panel_instance | ||
|
||
|
||
func _enter_tree(): | ||
add_custom_type("XanEngine", "Node", preload("scripts/XanEngine.gd"), preload("assets/ico_xan16.png")) | ||
DirAccess.make_dir_absolute("user://XanEngine/") | ||
DirAccess.make_dir_absolute("user://XanEngine/Config") | ||
DirAccess.make_dir_absolute("user://XanEngine/Banks") | ||
main_panel_instance = MainPanel.instantiate() | ||
get_editor_interface().get_editor_main_screen().add_child(main_panel_instance) | ||
_make_visible(false) | ||
|
||
|
||
func _exit_tree(): | ||
if main_panel_instance: | ||
main_panel_instance.queue_free() | ||
remove_custom_type("XanEngine") | ||
|
||
|
||
func _has_main_screen(): | ||
return true | ||
|
||
|
||
func _make_visible(visible): | ||
if main_panel_instance: | ||
main_panel_instance.visible = visible | ||
|
||
|
||
func _get_plugin_name(): | ||
return "XanEngine" | ||
|
||
|
||
func _get_plugin_icon(): | ||
return load("res://addons/XanEngine/assets/ico_xan16.png") |
Binary file added
BIN
+433 Bytes
XanEngineSource/3.6/PF3.6/base/xanbase/addons/XanEngine/assets/ico_ram16.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
34 changes: 34 additions & 0 deletions
34
XanEngineSource/3.6/PF3.6/base/xanbase/addons/XanEngine/assets/ico_ram16.png.import
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
[remap] | ||
|
||
importer="texture" | ||
type="CompressedTexture2D" | ||
uid="uid://c6vloi3qxl6gv" | ||
path="res://.godot/imported/ico_ram16.png-e3723e9d0fc1b9e428788b87f20e5ce3.ctex" | ||
metadata={ | ||
"vram_texture": false | ||
} | ||
|
||
[deps] | ||
|
||
source_file="res://addons/XanEngine/assets/ico_ram16.png" | ||
dest_files=["res://.godot/imported/ico_ram16.png-e3723e9d0fc1b9e428788b87f20e5ce3.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 |
Binary file added
BIN
+4.78 KB
XanEngineSource/3.6/PF3.6/base/xanbase/addons/XanEngine/assets/ico_ram512.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
34 changes: 34 additions & 0 deletions
34
XanEngineSource/3.6/PF3.6/base/xanbase/addons/XanEngine/assets/ico_ram512.png.import
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
[remap] | ||
|
||
importer="texture" | ||
type="CompressedTexture2D" | ||
uid="uid://ds0epyxl8n66e" | ||
path="res://.godot/imported/ico_ram512.png-6fa5dd6f70b08d3a2722de8766b06fca.ctex" | ||
metadata={ | ||
"vram_texture": false | ||
} | ||
|
||
[deps] | ||
|
||
source_file="res://addons/XanEngine/assets/ico_ram512.png" | ||
dest_files=["res://.godot/imported/ico_ram512.png-6fa5dd6f70b08d3a2722de8766b06fca.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 |
Binary file added
BIN
+878 Bytes
XanEngineSource/3.6/PF3.6/base/xanbase/addons/XanEngine/assets/ico_xan16.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
34 changes: 34 additions & 0 deletions
34
XanEngineSource/3.6/PF3.6/base/xanbase/addons/XanEngine/assets/ico_xan16.png.import
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
[remap] | ||
|
||
importer="texture" | ||
type="CompressedTexture2D" | ||
uid="uid://obqhbx3gfkyw" | ||
path="res://.godot/imported/ico_xan16.png-7a8e5eb5acfe93a5d53673abad9a4393.ctex" | ||
metadata={ | ||
"vram_texture": false | ||
} | ||
|
||
[deps] | ||
|
||
source_file="res://addons/XanEngine/assets/ico_xan16.png" | ||
dest_files=["res://.godot/imported/ico_xan16.png-7a8e5eb5acfe93a5d53673abad9a4393.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 |
Binary file added
BIN
+22.7 KB
XanEngineSource/3.6/PF3.6/base/xanbase/addons/XanEngine/assets/ico_xan256.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
34 changes: 34 additions & 0 deletions
34
XanEngineSource/3.6/PF3.6/base/xanbase/addons/XanEngine/assets/ico_xan256.png.import
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
[remap] | ||
|
||
importer="texture" | ||
type="CompressedTexture2D" | ||
uid="uid://b8sqyyca2ffc0" | ||
path="res://.godot/imported/ico_xan256.png-b22c13b7b2b32004707e49749f1cb750.ctex" | ||
metadata={ | ||
"vram_texture": false | ||
} | ||
|
||
[deps] | ||
|
||
source_file="res://addons/XanEngine/assets/ico_xan256.png" | ||
dest_files=["res://.godot/imported/ico_xan256.png-b22c13b7b2b32004707e49749f1cb750.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 |
14 changes: 14 additions & 0 deletions
14
XanEngineSource/3.6/PF3.6/base/xanbase/addons/XanEngine/drm/drmFileLoader.gd
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
extends Node | ||
class_name XanDRM | ||
|
||
func ConfigExists(path): | ||
var config = ConfigFile.new() | ||
var err = config.load(path) | ||
if err == OK: | ||
return true | ||
else: | ||
return false | ||
|
||
func _ready(): pass | ||
|
||
func _process(delta): pass |
58 changes: 58 additions & 0 deletions
58
XanEngineSource/3.6/PF3.6/base/xanbase/addons/XanEngine/drm/load_screen.tscn
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,58 @@ | ||
[gd_scene load_steps=5 format=3 uid="uid://bj5v0h4ju0ft"] | ||
|
||
[ext_resource type="Texture2D" uid="uid://f7mybyf44weu" path="res://addons/XanEngine/drm/xan-icon.png" id="1_sx1e4"] | ||
|
||
[sub_resource type="Animation" id="Animation_w6kqd"] | ||
length = 0.001 | ||
tracks/0/type = "value" | ||
tracks/0/imported = false | ||
tracks/0/enabled = true | ||
tracks/0/path = NodePath("AnimationPlayer/Sprite2D:rotation") | ||
tracks/0/interp = 1 | ||
tracks/0/loop_wrap = true | ||
tracks/0/keys = { | ||
"times": PackedFloat32Array(0), | ||
"transitions": PackedFloat32Array(1), | ||
"update": 0, | ||
"values": [0.0] | ||
} | ||
|
||
[sub_resource type="Animation" id="Animation_xcsrw"] | ||
resource_name = "drmload" | ||
loop_mode = 1 | ||
tracks/0/type = "value" | ||
tracks/0/imported = false | ||
tracks/0/enabled = true | ||
tracks/0/path = NodePath("AnimationPlayer/Sprite2D:rotation") | ||
tracks/0/interp = 1 | ||
tracks/0/loop_wrap = true | ||
tracks/0/keys = { | ||
"times": PackedFloat32Array(0, 1), | ||
"transitions": PackedFloat32Array(1, 1), | ||
"update": 0, | ||
"values": [0.0, 6.26573] | ||
} | ||
|
||
[sub_resource type="AnimationLibrary" id="AnimationLibrary_cddpx"] | ||
_data = { | ||
"RESET": SubResource("Animation_w6kqd"), | ||
"drmload": SubResource("Animation_xcsrw") | ||
} | ||
|
||
[node name="LoadScreen" type="Control"] | ||
layout_mode = 3 | ||
anchors_preset = 15 | ||
anchor_right = 1.0 | ||
anchor_bottom = 1.0 | ||
grow_horizontal = 2 | ||
grow_vertical = 2 | ||
|
||
[node name="AnimationPlayer" type="AnimationPlayer" parent="."] | ||
libraries = { | ||
"": SubResource("AnimationLibrary_cddpx") | ||
} | ||
|
||
[node name="Sprite2D" type="Sprite2D" parent="AnimationPlayer"] | ||
position = Vector2(500, 500) | ||
scale = Vector2(3.39431, 3.39431) | ||
texture = ExtResource("1_sx1e4") |
Binary file added
BIN
+22.7 KB
XanEngineSource/3.6/PF3.6/base/xanbase/addons/XanEngine/drm/xan-icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
34 changes: 34 additions & 0 deletions
34
XanEngineSource/3.6/PF3.6/base/xanbase/addons/XanEngine/drm/xan-icon.png.import
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
[remap] | ||
|
||
importer="texture" | ||
type="CompressedTexture2D" | ||
uid="uid://f7mybyf44weu" | ||
path="res://.godot/imported/xan-icon.png-5fcabbb6b29742bcebb821f6ca053c9e.ctex" | ||
metadata={ | ||
"vram_texture": false | ||
} | ||
|
||
[deps] | ||
|
||
source_file="res://addons/XanEngine/drm/xan-icon.png" | ||
dest_files=["res://.godot/imported/xan-icon.png-5fcabbb6b29742bcebb821f6ca053c9e.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 |
4 changes: 4 additions & 0 deletions
4
XanEngineSource/3.6/PF3.6/base/xanbase/addons/XanEngine/latres/ls_cat.tres
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
[gd_resource type="LabelSettings" format=3 uid="uid://3ksgetnqr1fx"] | ||
|
||
[resource] | ||
font_size = 25 |
4 changes: 4 additions & 0 deletions
4
XanEngineSource/3.6/PF3.6/base/xanbase/addons/XanEngine/latres/ls_title.tres
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
[gd_resource type="LabelSettings" format=3 uid="uid://balc35ankps2"] | ||
|
||
[resource] | ||
font_size = 41 |
Oops, something went wrong.