Initial commit

This commit is contained in:
2026-01-21 23:51:53 +01:00
commit 60b208fee0
1703 changed files with 100223 additions and 0 deletions

View File

@@ -0,0 +1,35 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://dwg8blik64gwk"
path.s3tc="res://.godot/imported/Rauchen_Verboten.svg.png-dba0c675e7123f74841912686f6eafaf.s3tc.ctex"
metadata={
"imported_formats": ["s3tc_bptc"],
"vram_texture": true
}
[deps]
source_file="res://assets/2D/Rauchen_Verboten.svg.png"
dest_files=["res://.godot/imported/Rauchen_Verboten.svg.png-dba0c675e7123f74841912686f6eafaf.s3tc.ctex"]
[params]
compress/mode=2
compress/high_quality=false
compress/lossy_quality=0.7
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=true
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=0

View File

@@ -0,0 +1,37 @@
[remap]
importer="scene"
importer_version=1
type="PackedScene"
uid="uid://cgqr7l660qeyp"
path="res://.godot/imported/Sample1.glb-344608e16b24932d3711d7a8efd76764.scn"
[deps]
source_file="res://assets/3D/Sample1.glb"
dest_files=["res://.godot/imported/Sample1.glb-344608e16b24932d3711d7a8efd76764.scn"]
[params]
nodes/root_type=""
nodes/root_name=""
nodes/apply_root_scale=true
nodes/root_scale=1.0
nodes/import_as_skeleton_bones=false
nodes/use_node_type_suffixes=true
meshes/ensure_tangents=true
meshes/generate_lods=true
meshes/create_shadow_meshes=true
meshes/light_baking=1
meshes/lightmap_texel_size=0.2
meshes/force_disable_compression=false
skins/use_named_skins=true
animation/import=true
animation/fps=30
animation/trimming=false
animation/remove_immutable_tracks=true
animation/import_rest_as_RESET=false
import_script/path=""
_subresources={}
gltf/naming_version=1
gltf/embedded_image_handling=1

View File

@@ -0,0 +1,44 @@
extends Object
class_name _NetfoxEditorUtils
static func gather_properties(root: Node, callback_name: String, handler: Callable) -> Array[String]:
var result: Array[String] = []
var nodes: Array[Node] = root.find_children("*")
nodes.push_front(root)
for node in nodes:
if not node.has_method(callback_name):
continue
var readable_node_name := "\"%s\" (\"%s\")" % [node.name, root.get_path_to(node)]
if node.get(callback_name) == null:
result.push_back("Can't grab method \"%s\" from node %s! Is it a @tool?" % [callback_name, readable_node_name])
continue
var props = node.get(callback_name).call()
if not props is Array:
result.push_back("Node %s didn't return an array on calling \"%s\"" % [readable_node_name, callback_name])
continue
for prop in props:
if prop is String:
# Property is a string, meaning property path relative to node
handler.call(node, prop)
elif prop is Array and prop.size() >= 2:
# Property is a node-property tuple
var prop_node: Node = null
# Node can be a String, NodePath, or an actual Node
if prop[0] is String or prop[0] is NodePath:
prop_node = node.get_node(prop[0])
elif prop[0] is Node:
prop_node = prop[0]
else:
result.push_back("Node %s specified invalid node in \"%s\": %s" % [readable_node_name, callback_name, prop])
continue
handler.call(prop_node, prop[1])
else:
result.push_back("Node %s specified invalid property in \"%s\": %s" % [readable_node_name, callback_name, prop])
return result