From 5619b49b651d930f013d4f61d100839b1a9708c1 Mon Sep 17 00:00:00 2001 From: Thaddeus Crews Date: Tue, 10 Dec 2024 09:05:49 -0600 Subject: [PATCH] Core: Add missing `.uid` files (#98) --- benchmark.gd.uid | 1 + benchmarks/animation/animated_models.gd.uid | 1 + benchmarks/animation/tween.gd.uid | 1 + benchmarks/asset_import_export/runtime.gd.uid | 1 + benchmarks/core/array.gd.uid | 1 + benchmarks/core/node_path.gd.uid | 1 + benchmarks/core/random_number_generator.gd.uid | 1 + benchmarks/core/signal.gd.uid | 1 + benchmarks/core/string_name.gd.uid | 1 + benchmarks/gdscript/alloc.gd.uid | 1 + benchmarks/gdscript/array.gd.uid | 1 + benchmarks/gdscript/binary_trees.gd.uid | 1 + benchmarks/gdscript/for_loop.gd.uid | 1 + benchmarks/gdscript/hello_world.gd.uid | 1 + benchmarks/gdscript/lambda_performance.gd.uid | 1 + benchmarks/gdscript/merkle_trees.gd.uid | 1 + benchmarks/gdscript/nbody.gd.uid | 1 + benchmarks/gdscript/spectral_norm.gd.uid | 1 + benchmarks/gdscript/string_checksum.gd.uid | 1 + benchmarks/gdscript/string_format.gd.uid | 1 + benchmarks/gdscript/string_manipulation.gd.uid | 1 + benchmarks/gui/label.gd.uid | 1 + benchmarks/math/delaunay_2d.gd.uid | 1 + benchmarks/math/delaunay_3d.gd.uid | 1 + benchmarks/math/noise.gd.uid | 1 + benchmarks/math/triangulate.gd.uid | 1 + benchmarks/navigation/astar_2d.gd.uid | 1 + benchmarks/navigation/astar_3d.gd.uid | 1 + benchmarks/navigation/moving_agents_2d.gd.uid | 1 + benchmarks/navigation/moving_agents_3d.gd.uid | 1 + benchmarks/navigation/navigation_2d.gd.uid | 1 + benchmarks/navigation/navigation_3d.gd.uid | 1 + benchmarks/physics/area_2d.gd.uid | 1 + benchmarks/physics/area_3d.gd.uid | 1 + benchmarks/physics/character_body_2d.gd.uid | 1 + benchmarks/physics/character_body_3d.gd.uid | 1 + benchmarks/physics/raycast_2d.gd.uid | 1 + benchmarks/physics/raycast_3d.gd.uid | 1 + benchmarks/physics/rigid_body_2d.gd.uid | 1 + benchmarks/physics/rigid_body_3d.gd.uid | 1 + benchmarks/physics/softbody_3d.gd.uid | 1 + benchmarks/physics/triangle_mesh.gd.uid | 1 + benchmarks/rendering/bunnymark.gd.uid | 1 + benchmarks/rendering/culling.gd.uid | 1 + benchmarks/rendering/lights_2d.gd.uid | 1 + benchmarks/rendering/sponza.gd.uid | 1 + benchmarks/scene_nodes/add_children.gd.uid | 1 + benchmarks/scene_nodes/delete_children.gd.uid | 1 + benchmarks/viewport/activation.gd.uid | 1 + benchmarks/viewport/allocation.gd.uid | 1 + gdextension/bin/cppbenchmarks.gdextension.uid | 1 + main.gd.uid | 1 + manager.gd.uid | 1 + merge_json.gd.uid | 1 + 54 files changed, 54 insertions(+) create mode 100644 benchmark.gd.uid create mode 100644 benchmarks/animation/animated_models.gd.uid create mode 100644 benchmarks/animation/tween.gd.uid create mode 100644 benchmarks/asset_import_export/runtime.gd.uid create mode 100644 benchmarks/core/array.gd.uid create mode 100644 benchmarks/core/node_path.gd.uid create mode 100644 benchmarks/core/random_number_generator.gd.uid create mode 100644 benchmarks/core/signal.gd.uid create mode 100644 benchmarks/core/string_name.gd.uid create mode 100644 benchmarks/gdscript/alloc.gd.uid create mode 100644 benchmarks/gdscript/array.gd.uid create mode 100644 benchmarks/gdscript/binary_trees.gd.uid create mode 100644 benchmarks/gdscript/for_loop.gd.uid create mode 100644 benchmarks/gdscript/hello_world.gd.uid create mode 100644 benchmarks/gdscript/lambda_performance.gd.uid create mode 100644 benchmarks/gdscript/merkle_trees.gd.uid create mode 100644 benchmarks/gdscript/nbody.gd.uid create mode 100644 benchmarks/gdscript/spectral_norm.gd.uid create mode 100644 benchmarks/gdscript/string_checksum.gd.uid create mode 100644 benchmarks/gdscript/string_format.gd.uid create mode 100644 benchmarks/gdscript/string_manipulation.gd.uid create mode 100644 benchmarks/gui/label.gd.uid create mode 100644 benchmarks/math/delaunay_2d.gd.uid create mode 100644 benchmarks/math/delaunay_3d.gd.uid create mode 100644 benchmarks/math/noise.gd.uid create mode 100644 benchmarks/math/triangulate.gd.uid create mode 100644 benchmarks/navigation/astar_2d.gd.uid create mode 100644 benchmarks/navigation/astar_3d.gd.uid create mode 100644 benchmarks/navigation/moving_agents_2d.gd.uid create mode 100644 benchmarks/navigation/moving_agents_3d.gd.uid create mode 100644 benchmarks/navigation/navigation_2d.gd.uid create mode 100644 benchmarks/navigation/navigation_3d.gd.uid create mode 100644 benchmarks/physics/area_2d.gd.uid create mode 100644 benchmarks/physics/area_3d.gd.uid create mode 100644 benchmarks/physics/character_body_2d.gd.uid create mode 100644 benchmarks/physics/character_body_3d.gd.uid create mode 100644 benchmarks/physics/raycast_2d.gd.uid create mode 100644 benchmarks/physics/raycast_3d.gd.uid create mode 100644 benchmarks/physics/rigid_body_2d.gd.uid create mode 100644 benchmarks/physics/rigid_body_3d.gd.uid create mode 100644 benchmarks/physics/softbody_3d.gd.uid create mode 100644 benchmarks/physics/triangle_mesh.gd.uid create mode 100644 benchmarks/rendering/bunnymark.gd.uid create mode 100644 benchmarks/rendering/culling.gd.uid create mode 100644 benchmarks/rendering/lights_2d.gd.uid create mode 100644 benchmarks/rendering/sponza.gd.uid create mode 100644 benchmarks/scene_nodes/add_children.gd.uid create mode 100644 benchmarks/scene_nodes/delete_children.gd.uid create mode 100644 benchmarks/viewport/activation.gd.uid create mode 100644 benchmarks/viewport/allocation.gd.uid create mode 100644 gdextension/bin/cppbenchmarks.gdextension.uid create mode 100644 main.gd.uid create mode 100644 manager.gd.uid create mode 100644 merge_json.gd.uid diff --git a/benchmark.gd.uid b/benchmark.gd.uid new file mode 100644 index 0000000..1c7150a --- /dev/null +++ b/benchmark.gd.uid @@ -0,0 +1 @@ +uid://cniso5p5v58a1 diff --git a/benchmarks/animation/animated_models.gd.uid b/benchmarks/animation/animated_models.gd.uid new file mode 100644 index 0000000..695362b --- /dev/null +++ b/benchmarks/animation/animated_models.gd.uid @@ -0,0 +1 @@ +uid://ga3tmjy3dobp diff --git a/benchmarks/animation/tween.gd.uid b/benchmarks/animation/tween.gd.uid new file mode 100644 index 0000000..a6d8ea1 --- /dev/null +++ b/benchmarks/animation/tween.gd.uid @@ -0,0 +1 @@ +uid://buclg6st2wd2n diff --git a/benchmarks/asset_import_export/runtime.gd.uid b/benchmarks/asset_import_export/runtime.gd.uid new file mode 100644 index 0000000..adda3ff --- /dev/null +++ b/benchmarks/asset_import_export/runtime.gd.uid @@ -0,0 +1 @@ +uid://conpnupmc0yc diff --git a/benchmarks/core/array.gd.uid b/benchmarks/core/array.gd.uid new file mode 100644 index 0000000..ee3d6fe --- /dev/null +++ b/benchmarks/core/array.gd.uid @@ -0,0 +1 @@ +uid://dvrklc24fngy2 diff --git a/benchmarks/core/node_path.gd.uid b/benchmarks/core/node_path.gd.uid new file mode 100644 index 0000000..978a375 --- /dev/null +++ b/benchmarks/core/node_path.gd.uid @@ -0,0 +1 @@ +uid://dvuk7sfkv4kjm diff --git a/benchmarks/core/random_number_generator.gd.uid b/benchmarks/core/random_number_generator.gd.uid new file mode 100644 index 0000000..c0c63e7 --- /dev/null +++ b/benchmarks/core/random_number_generator.gd.uid @@ -0,0 +1 @@ +uid://bgpo0o67a28l5 diff --git a/benchmarks/core/signal.gd.uid b/benchmarks/core/signal.gd.uid new file mode 100644 index 0000000..d2ec3a4 --- /dev/null +++ b/benchmarks/core/signal.gd.uid @@ -0,0 +1 @@ +uid://dl7ws21uhhp4t diff --git a/benchmarks/core/string_name.gd.uid b/benchmarks/core/string_name.gd.uid new file mode 100644 index 0000000..14b0db4 --- /dev/null +++ b/benchmarks/core/string_name.gd.uid @@ -0,0 +1 @@ +uid://ditxnh3l14ut7 diff --git a/benchmarks/gdscript/alloc.gd.uid b/benchmarks/gdscript/alloc.gd.uid new file mode 100644 index 0000000..adb5d55 --- /dev/null +++ b/benchmarks/gdscript/alloc.gd.uid @@ -0,0 +1 @@ +uid://ca25mtb0v085n diff --git a/benchmarks/gdscript/array.gd.uid b/benchmarks/gdscript/array.gd.uid new file mode 100644 index 0000000..0288c45 --- /dev/null +++ b/benchmarks/gdscript/array.gd.uid @@ -0,0 +1 @@ +uid://cygb52e3sc6a1 diff --git a/benchmarks/gdscript/binary_trees.gd.uid b/benchmarks/gdscript/binary_trees.gd.uid new file mode 100644 index 0000000..72d0c87 --- /dev/null +++ b/benchmarks/gdscript/binary_trees.gd.uid @@ -0,0 +1 @@ +uid://b0pxrgf2dwoxi diff --git a/benchmarks/gdscript/for_loop.gd.uid b/benchmarks/gdscript/for_loop.gd.uid new file mode 100644 index 0000000..6baeda8 --- /dev/null +++ b/benchmarks/gdscript/for_loop.gd.uid @@ -0,0 +1 @@ +uid://r0cw7f6raiec diff --git a/benchmarks/gdscript/hello_world.gd.uid b/benchmarks/gdscript/hello_world.gd.uid new file mode 100644 index 0000000..a530f7f --- /dev/null +++ b/benchmarks/gdscript/hello_world.gd.uid @@ -0,0 +1 @@ +uid://dur7p8s8vmun0 diff --git a/benchmarks/gdscript/lambda_performance.gd.uid b/benchmarks/gdscript/lambda_performance.gd.uid new file mode 100644 index 0000000..31b6ea4 --- /dev/null +++ b/benchmarks/gdscript/lambda_performance.gd.uid @@ -0,0 +1 @@ +uid://55dcfvxuncht diff --git a/benchmarks/gdscript/merkle_trees.gd.uid b/benchmarks/gdscript/merkle_trees.gd.uid new file mode 100644 index 0000000..bb7cedb --- /dev/null +++ b/benchmarks/gdscript/merkle_trees.gd.uid @@ -0,0 +1 @@ +uid://dlj8oddj4u3dj diff --git a/benchmarks/gdscript/nbody.gd.uid b/benchmarks/gdscript/nbody.gd.uid new file mode 100644 index 0000000..29e7202 --- /dev/null +++ b/benchmarks/gdscript/nbody.gd.uid @@ -0,0 +1 @@ +uid://ctsjt6nayvcdk diff --git a/benchmarks/gdscript/spectral_norm.gd.uid b/benchmarks/gdscript/spectral_norm.gd.uid new file mode 100644 index 0000000..c39e554 --- /dev/null +++ b/benchmarks/gdscript/spectral_norm.gd.uid @@ -0,0 +1 @@ +uid://khy74etet5pv diff --git a/benchmarks/gdscript/string_checksum.gd.uid b/benchmarks/gdscript/string_checksum.gd.uid new file mode 100644 index 0000000..239d8cd --- /dev/null +++ b/benchmarks/gdscript/string_checksum.gd.uid @@ -0,0 +1 @@ +uid://7pk564a0mykt diff --git a/benchmarks/gdscript/string_format.gd.uid b/benchmarks/gdscript/string_format.gd.uid new file mode 100644 index 0000000..9a26c7a --- /dev/null +++ b/benchmarks/gdscript/string_format.gd.uid @@ -0,0 +1 @@ +uid://c2qfv68lmwqmy diff --git a/benchmarks/gdscript/string_manipulation.gd.uid b/benchmarks/gdscript/string_manipulation.gd.uid new file mode 100644 index 0000000..cd9968a --- /dev/null +++ b/benchmarks/gdscript/string_manipulation.gd.uid @@ -0,0 +1 @@ +uid://c4yphsyvmorvk diff --git a/benchmarks/gui/label.gd.uid b/benchmarks/gui/label.gd.uid new file mode 100644 index 0000000..933e428 --- /dev/null +++ b/benchmarks/gui/label.gd.uid @@ -0,0 +1 @@ +uid://1yi3syfokgyb diff --git a/benchmarks/math/delaunay_2d.gd.uid b/benchmarks/math/delaunay_2d.gd.uid new file mode 100644 index 0000000..89f3be8 --- /dev/null +++ b/benchmarks/math/delaunay_2d.gd.uid @@ -0,0 +1 @@ +uid://dubrshp8hojad diff --git a/benchmarks/math/delaunay_3d.gd.uid b/benchmarks/math/delaunay_3d.gd.uid new file mode 100644 index 0000000..a05c6f1 --- /dev/null +++ b/benchmarks/math/delaunay_3d.gd.uid @@ -0,0 +1 @@ +uid://dvow81c2a71hx diff --git a/benchmarks/math/noise.gd.uid b/benchmarks/math/noise.gd.uid new file mode 100644 index 0000000..1f06616 --- /dev/null +++ b/benchmarks/math/noise.gd.uid @@ -0,0 +1 @@ +uid://cwme47bbt3l23 diff --git a/benchmarks/math/triangulate.gd.uid b/benchmarks/math/triangulate.gd.uid new file mode 100644 index 0000000..83860b9 --- /dev/null +++ b/benchmarks/math/triangulate.gd.uid @@ -0,0 +1 @@ +uid://2cmcfmxuav0d diff --git a/benchmarks/navigation/astar_2d.gd.uid b/benchmarks/navigation/astar_2d.gd.uid new file mode 100644 index 0000000..fda554c --- /dev/null +++ b/benchmarks/navigation/astar_2d.gd.uid @@ -0,0 +1 @@ +uid://bixpt1r7h0q0g diff --git a/benchmarks/navigation/astar_3d.gd.uid b/benchmarks/navigation/astar_3d.gd.uid new file mode 100644 index 0000000..8d916d1 --- /dev/null +++ b/benchmarks/navigation/astar_3d.gd.uid @@ -0,0 +1 @@ +uid://w7qmdgl2n8ya diff --git a/benchmarks/navigation/moving_agents_2d.gd.uid b/benchmarks/navigation/moving_agents_2d.gd.uid new file mode 100644 index 0000000..a445ed7 --- /dev/null +++ b/benchmarks/navigation/moving_agents_2d.gd.uid @@ -0,0 +1 @@ +uid://bggbisy58rooi diff --git a/benchmarks/navigation/moving_agents_3d.gd.uid b/benchmarks/navigation/moving_agents_3d.gd.uid new file mode 100644 index 0000000..5250a65 --- /dev/null +++ b/benchmarks/navigation/moving_agents_3d.gd.uid @@ -0,0 +1 @@ +uid://csamsywijjv4k diff --git a/benchmarks/navigation/navigation_2d.gd.uid b/benchmarks/navigation/navigation_2d.gd.uid new file mode 100644 index 0000000..a40443c --- /dev/null +++ b/benchmarks/navigation/navigation_2d.gd.uid @@ -0,0 +1 @@ +uid://csj5tjdnstqmj diff --git a/benchmarks/navigation/navigation_3d.gd.uid b/benchmarks/navigation/navigation_3d.gd.uid new file mode 100644 index 0000000..c22960b --- /dev/null +++ b/benchmarks/navigation/navigation_3d.gd.uid @@ -0,0 +1 @@ +uid://dx6qcwt7sq2pu diff --git a/benchmarks/physics/area_2d.gd.uid b/benchmarks/physics/area_2d.gd.uid new file mode 100644 index 0000000..84f4052 --- /dev/null +++ b/benchmarks/physics/area_2d.gd.uid @@ -0,0 +1 @@ +uid://b5o8ibt36q13y diff --git a/benchmarks/physics/area_3d.gd.uid b/benchmarks/physics/area_3d.gd.uid new file mode 100644 index 0000000..c55f4ed --- /dev/null +++ b/benchmarks/physics/area_3d.gd.uid @@ -0,0 +1 @@ +uid://dcrvc87y7seom diff --git a/benchmarks/physics/character_body_2d.gd.uid b/benchmarks/physics/character_body_2d.gd.uid new file mode 100644 index 0000000..cf26cdb --- /dev/null +++ b/benchmarks/physics/character_body_2d.gd.uid @@ -0,0 +1 @@ +uid://b08vn2brv3yhn diff --git a/benchmarks/physics/character_body_3d.gd.uid b/benchmarks/physics/character_body_3d.gd.uid new file mode 100644 index 0000000..2a78c81 --- /dev/null +++ b/benchmarks/physics/character_body_3d.gd.uid @@ -0,0 +1 @@ +uid://bvveg1ppa301b diff --git a/benchmarks/physics/raycast_2d.gd.uid b/benchmarks/physics/raycast_2d.gd.uid new file mode 100644 index 0000000..760ba8e --- /dev/null +++ b/benchmarks/physics/raycast_2d.gd.uid @@ -0,0 +1 @@ +uid://bga05q61htpr0 diff --git a/benchmarks/physics/raycast_3d.gd.uid b/benchmarks/physics/raycast_3d.gd.uid new file mode 100644 index 0000000..c14617f --- /dev/null +++ b/benchmarks/physics/raycast_3d.gd.uid @@ -0,0 +1 @@ +uid://qh1dxmmpk2uk diff --git a/benchmarks/physics/rigid_body_2d.gd.uid b/benchmarks/physics/rigid_body_2d.gd.uid new file mode 100644 index 0000000..0f1c9a5 --- /dev/null +++ b/benchmarks/physics/rigid_body_2d.gd.uid @@ -0,0 +1 @@ +uid://da4aad7vseqrk diff --git a/benchmarks/physics/rigid_body_3d.gd.uid b/benchmarks/physics/rigid_body_3d.gd.uid new file mode 100644 index 0000000..45a25e6 --- /dev/null +++ b/benchmarks/physics/rigid_body_3d.gd.uid @@ -0,0 +1 @@ +uid://h4vfw02x0t0v diff --git a/benchmarks/physics/softbody_3d.gd.uid b/benchmarks/physics/softbody_3d.gd.uid new file mode 100644 index 0000000..d9b4d5b --- /dev/null +++ b/benchmarks/physics/softbody_3d.gd.uid @@ -0,0 +1 @@ +uid://csoaqrkolfsmn diff --git a/benchmarks/physics/triangle_mesh.gd.uid b/benchmarks/physics/triangle_mesh.gd.uid new file mode 100644 index 0000000..1e96366 --- /dev/null +++ b/benchmarks/physics/triangle_mesh.gd.uid @@ -0,0 +1 @@ +uid://qivuavr52u8j diff --git a/benchmarks/rendering/bunnymark.gd.uid b/benchmarks/rendering/bunnymark.gd.uid new file mode 100644 index 0000000..716249c --- /dev/null +++ b/benchmarks/rendering/bunnymark.gd.uid @@ -0,0 +1 @@ +uid://1rdnu8kqdsjq diff --git a/benchmarks/rendering/culling.gd.uid b/benchmarks/rendering/culling.gd.uid new file mode 100644 index 0000000..43e8f38 --- /dev/null +++ b/benchmarks/rendering/culling.gd.uid @@ -0,0 +1 @@ +uid://bshk4tb0cdxmh diff --git a/benchmarks/rendering/lights_2d.gd.uid b/benchmarks/rendering/lights_2d.gd.uid new file mode 100644 index 0000000..5ae07b2 --- /dev/null +++ b/benchmarks/rendering/lights_2d.gd.uid @@ -0,0 +1 @@ +uid://bn03msxx7ya35 diff --git a/benchmarks/rendering/sponza.gd.uid b/benchmarks/rendering/sponza.gd.uid new file mode 100644 index 0000000..05c304c --- /dev/null +++ b/benchmarks/rendering/sponza.gd.uid @@ -0,0 +1 @@ +uid://cgj6mmvqdv0iq diff --git a/benchmarks/scene_nodes/add_children.gd.uid b/benchmarks/scene_nodes/add_children.gd.uid new file mode 100644 index 0000000..3c7aa91 --- /dev/null +++ b/benchmarks/scene_nodes/add_children.gd.uid @@ -0,0 +1 @@ +uid://bhawtdnggd1e2 diff --git a/benchmarks/scene_nodes/delete_children.gd.uid b/benchmarks/scene_nodes/delete_children.gd.uid new file mode 100644 index 0000000..a4280bb --- /dev/null +++ b/benchmarks/scene_nodes/delete_children.gd.uid @@ -0,0 +1 @@ +uid://t5sbwxi4tb51 diff --git a/benchmarks/viewport/activation.gd.uid b/benchmarks/viewport/activation.gd.uid new file mode 100644 index 0000000..1943952 --- /dev/null +++ b/benchmarks/viewport/activation.gd.uid @@ -0,0 +1 @@ +uid://8lf1um5ltndg diff --git a/benchmarks/viewport/allocation.gd.uid b/benchmarks/viewport/allocation.gd.uid new file mode 100644 index 0000000..18fc2b1 --- /dev/null +++ b/benchmarks/viewport/allocation.gd.uid @@ -0,0 +1 @@ +uid://8a4d1s4b7y3o diff --git a/gdextension/bin/cppbenchmarks.gdextension.uid b/gdextension/bin/cppbenchmarks.gdextension.uid new file mode 100644 index 0000000..58f22dd --- /dev/null +++ b/gdextension/bin/cppbenchmarks.gdextension.uid @@ -0,0 +1 @@ +uid://t5fwkt8cqjkx diff --git a/main.gd.uid b/main.gd.uid new file mode 100644 index 0000000..9ba00cf --- /dev/null +++ b/main.gd.uid @@ -0,0 +1 @@ +uid://dg10yui44srth diff --git a/manager.gd.uid b/manager.gd.uid new file mode 100644 index 0000000..f85f0c7 --- /dev/null +++ b/manager.gd.uid @@ -0,0 +1 @@ +uid://bj8glpygscidi diff --git a/merge_json.gd.uid b/merge_json.gd.uid new file mode 100644 index 0000000..75e0d2f --- /dev/null +++ b/merge_json.gd.uid @@ -0,0 +1 @@ +uid://bysvf6k0t703c