diff --git a/addons/godot_rl_agents/controller/ai_controller.gd b/addons/godot_rl_agents/controller/ai_controller.gd new file mode 100644 index 0000000000000000000000000000000000000000..7a809efc8b43e461aa0d3dd0ce7d971cfd5d245a --- /dev/null +++ b/addons/godot_rl_agents/controller/ai_controller.gd @@ -0,0 +1,77 @@ +extends Node +class_name AIController + +# ------------------ Godot RL Agents Logic ------------------------------------# +@export var reset_after := 1000 + +var heuristic := "human" +var done := false +var reward := 0.0 +var n_steps := 0 + +var needs_reset := false + +func _ready(): + add_to_group("AGENT") + +#-- Methods that need implementing using the "extend script" option in Godot --# +func get_obs() -> Dictionary: + assert(false, "the get_obs method is not implemented when extending from ai_controller") + return {"obs":[]} + +func get_reward() -> float: + assert(false, "the get_reward method is not implemented when extending from ai_controller") + return 0.0 + +func get_action_space() -> Dictionary: + assert(false, "the get get_action_space method is not implemented when extending from ai_controller") + return { + "example_actions_continous" : { + "size": 2, + "action_type": "continuous" + }, + "example_actions_discrete" : { + "size": 2, + "action_type": "discrete" + }, + } + +func set_action(action) -> void: + assert(false, "the get set_action method is not implemented when extending from ai_controller") +# -----------------------------------------------------------------------------# + +func _physics_process(delta): + n_steps += 1 + if n_steps > reset_after: + needs_reset = true + +func get_obs_space(): + # may need overriding if the obs space is complex + var obs = get_obs() + return { + "obs": { + "size": [len(obs["obs"])], + "space": "box" + }, + } + +func reset(): + n_steps = 0 + needs_reset = false + +func reset_if_done(): + if done: + reset() + +func set_heuristic(h): + # sets the heuristic from "human" or "model" nothing to change here + heuristic = h + +func get_done(): + return done + +func set_done_false(): + done = false + +func zero_reward(): + reward = 0.0 diff --git a/addons/godot_rl_agents/controller/ai_controller_2d.gd b/addons/godot_rl_agents/controller/ai_controller_2d.gd new file mode 100644 index 0000000000000000000000000000000000000000..687f5b03cc731fbfad7cc7a602d523305a947237 --- /dev/null +++ b/addons/godot_rl_agents/controller/ai_controller_2d.gd @@ -0,0 +1,8 @@ +extends AIController +class_name AIController2D + +# ------------------ Godot RL Agents Logic ------------------------------------# +var _player: Node2D + +func init(player: Node2D): + _player = player diff --git a/addons/godot_rl_agents/controller/ai_controller_3d.gd b/addons/godot_rl_agents/controller/ai_controller_3d.gd new file mode 100644 index 0000000000000000000000000000000000000000..dcbc2e010c3556f6343ddced55ff40bdda1240df --- /dev/null +++ b/addons/godot_rl_agents/controller/ai_controller_3d.gd @@ -0,0 +1,8 @@ +extends AIController +class_name AIController3D + +# ------------------ Godot RL Agents Logic ------------------------------------# +var _player: Node3D + +func init(player: Node3D): + _player = player diff --git a/addons/godot_rl_agents/icon.png.import b/addons/godot_rl_agents/icon.png.import index 6c33bd296f474632713c07abf48826f3aabc8407..7baa499fee2a19540b993c8b328d78d32e7bd450 100644 --- a/addons/godot_rl_agents/icon.png.import +++ b/addons/godot_rl_agents/icon.png.import @@ -2,7 +2,7 @@ importer="texture" type="CompressedTexture2D" -uid="uid://b7lwg3uk8v3pr" +uid="uid://dn7mfntm1bfv4" path="res://.godot/imported/icon.png-45a871b53434e556222f5901d598ab34.ctex" metadata={ "vram_texture": false @@ -16,9 +16,9 @@ dest_files=["res://.godot/imported/icon.png-45a871b53434e556222f5901d598ab34.cte [params] compress/mode=0 +compress/high_quality=false compress/lossy_quality=0.7 compress/hdr_compression=1 -compress/bptc_ldr=0 compress/normal_map=0 compress/channel_pack=0 mipmaps/generate=false diff --git a/addons/godot_rl_agents/onnx/csharp/ONNXInference.cs b/addons/godot_rl_agents/onnx/csharp/ONNXInference.cs new file mode 100644 index 0000000000000000000000000000000000000000..936abca5edbc35fd57a67933cd6ee72167cd0cd4 --- /dev/null +++ b/addons/godot_rl_agents/onnx/csharp/ONNXInference.cs @@ -0,0 +1,93 @@ +using Godot; +using System.Collections.Generic; +using System.Linq; +using Microsoft.ML.OnnxRuntime; +using Microsoft.ML.OnnxRuntime.Tensors; + +namespace GodotONNX{ + /// + public partial class ONNXInference : Node +{ + + private InferenceSession session; + /// + /// Path to the ONNX model. Use Initialize to change it. + /// + private string modelPath; + private int batchSize; + + private SessionOptions SessionOpt; + + //init function +/// + public void Initialize(string Path, int BatchSize) + { + modelPath = Path; + batchSize = BatchSize; + SessionConfigurator.SystemCheck(); + SessionOpt = SessionConfigurator.GetSessionOptions(); + session = LoadModel(modelPath); + + } +/// + public Godot.Collections.Dictionary> RunInference(Godot.Collections.Array obs, int state_ins) + { + //Current model: Any (Godot Rl Agents) + //Expects a tensor of shape [batch_size, input_size] type float named obs and a tensor of shape [batch_size] type float named state_ins + + //Fill the input tensors + // create span from inputSize + var span = new float[obs.Count]; //There's probably a better way to do this + for (int i = 0; i < obs.Count; i++) + { + span[i] = obs[i]; + } + + IReadOnlyCollection inputs = new List + { + NamedOnnxValue.CreateFromTensor("obs", new DenseTensor(span, new int[] { batchSize, obs.Count })), + NamedOnnxValue.CreateFromTensor("state_ins", new DenseTensor(new float[] { state_ins }, new int[] { batchSize })) + }; + IReadOnlyCollection outputNames = new List { "output", "state_outs" }; //ONNX is sensible to these names, as well as the input names + + IDisposableReadOnlyCollection results; + + try{ + results = session.Run(inputs, outputNames); + } + catch (OnnxRuntimeException e) { + //This error usually means that the model is not compatible with the input, beacause of the input shape (size) + GD.Print("Error at inference: ", e); + return null; + } + //Can't convert IEnumerable to Variant, so we have to convert it to an array or something + Godot.Collections.Dictionary> output = new Godot.Collections.Dictionary>(); + DisposableNamedOnnxValue output1 = results.First(); + DisposableNamedOnnxValue output2 = results.Last(); + Godot.Collections.Array output1Array = new Godot.Collections.Array(); + Godot.Collections.Array output2Array = new Godot.Collections.Array(); + + foreach (float f in output1.AsEnumerable()) { + output1Array.Add(f); + } + + foreach (float f in output2.AsEnumerable()) { + output2Array.Add(f); + } + + output.Add(output1.Name, output1Array); + output.Add(output2.Name, output2Array); + + //Output is a dictionary of arrays, ex: { "output" : [0.1, 0.2, 0.3, 0.4, ...], "state_outs" : [0.5, ...]} + return output; + } +/// + public InferenceSession LoadModel(string Path) + { + Godot.FileAccess file = FileAccess.Open(Path, Godot.FileAccess.ModeFlags.Read); + byte[] model = file.GetBuffer((int)file.GetLength()); + file.Close(); + return new InferenceSession(model, SessionOpt); //Load the model + } + } +} diff --git a/addons/godot_rl_agents/onnx/csharp/SessionConfigurator.cs b/addons/godot_rl_agents/onnx/csharp/SessionConfigurator.cs new file mode 100644 index 0000000000000000000000000000000000000000..d83950fa9d7b8970a0c1be690aa546bdfd8e86f3 --- /dev/null +++ b/addons/godot_rl_agents/onnx/csharp/SessionConfigurator.cs @@ -0,0 +1,106 @@ +using Godot; +using Microsoft.ML.OnnxRuntime; + +namespace GodotONNX{ +/// + + public static class SessionConfigurator { + + private static SessionOptions options = new SessionOptions(); + +/// + public static SessionOptions GetSessionOptions() { + options = new SessionOptions(); + options.LogSeverityLevel = OrtLoggingLevel.ORT_LOGGING_LEVEL_WARNING; + // see warnings + SystemCheck(); + return options; + } +/// + +static public void SystemCheck() + { + //Most code for this function is verbose only, the only reason it exists is to track + //implementation progress of the different compute APIs. + + //December 2022: CUDA is not working. + + string OSName = OS.GetName(); //Get OS Name + int ComputeAPIID = ComputeCheck(); //Get Compute API + //TODO: Get CPU architecture + + //Linux can use OpenVINO (C#) on x64 and ROCm on x86 (GDNative/C++) + //Windows can use OpenVINO (C#) on x64 + //TODO: try TensorRT instead of CUDA + //TODO: Use OpenVINO for Intel Graphics + + string [] ComputeNames = {"CUDA", "DirectML/ROCm", "DirectML", "CoreML", "CPU"}; + //match OS and Compute API + options.AppendExecutionProvider_CPU(0); // Always use CPU + GD.Print("OS: " + OSName, " | Compute API: " + ComputeNames[ComputeAPIID]); + + switch (OSName) + { + case "Windows": //Can use CUDA, DirectML + if (ComputeAPIID == 0) + { + //CUDA + //options.AppendExecutionProvider_CUDA(0); + options.AppendExecutionProvider_DML(0); + } + else if (ComputeAPIID == 1) + { + //DirectML + options.AppendExecutionProvider_DML(0); + } + break; + case "X11": //Can use CUDA, ROCm + if (ComputeAPIID == 0) + { + //CUDA + //options.AppendExecutionProvider_CUDA(0); + } + if (ComputeAPIID == 1) + { + //ROCm, only works on x86 + //Research indicates that this has to be compiled as a GDNative plugin + GD.Print("ROCm not supported yet, using CPU."); + options.AppendExecutionProvider_CPU(0); + } + + break; + case "OSX": //Can use CoreML + if (ComputeAPIID == 0) { //CoreML + //TODO: Needs testing + options.AppendExecutionProvider_CoreML(0); + //CoreML on ARM64, out of the box, on x64 needs .tar file from GitHub + } + break; + default: + GD.Print("OS not Supported."); + break; + } + } +/// + + public static int ComputeCheck() + { + string adapterName = Godot.RenderingServer.GetVideoAdapterName(); + //string adapterVendor = Godot.RenderingServer.GetVideoAdapterVendor(); + adapterName = adapterName.ToUpper(new System.Globalization.CultureInfo("")); + //TODO: GPU vendors for MacOS, what do they even use these days? + if (adapterName.Contains("INTEL")) { + //Return 2, should use DirectML only + return 2;} + if (adapterName.Contains("AMD")) { + //Return 1, should use DirectML, check later for ROCm + return 1;} + if (adapterName.Contains("NVIDIA")){ + //Return 0, should use CUDA + return 0;} + + GD.Print("Graphics Card not recognized."); //Return -1, should use CPU + return -1; + } + } +} diff --git a/addons/godot_rl_agents/onnx/csharp/docs/ONNXInference.xml b/addons/godot_rl_agents/onnx/csharp/docs/ONNXInference.xml new file mode 100644 index 0000000000000000000000000000000000000000..91b07d607dc89f11e957e13758d8c0ee4fb72be8 --- /dev/null +++ b/addons/godot_rl_agents/onnx/csharp/docs/ONNXInference.xml @@ -0,0 +1,31 @@ + + + + + The main ONNXInference Class that handles the inference process. + + + + + Starts the inference process. + + Path to the ONNX model, expects a path inside resources. + How many observations will the model recieve. + + + + Runs the given input through the model and returns the output. + + Dictionary containing all observations. + How many different agents are creating these observations. + A Dictionary of arrays, containing instructions based on the observations. + + + + Loads the given model into the inference process, using the best Execution provider available. + + Path to the ONNX model, expects a path inside resources. + InferenceSession ready to run. + + + \ No newline at end of file diff --git a/addons/godot_rl_agents/onnx/csharp/docs/SessionConfigurator.xml b/addons/godot_rl_agents/onnx/csharp/docs/SessionConfigurator.xml new file mode 100644 index 0000000000000000000000000000000000000000..f160c02f0d4cab92e10f799b6f4c5a71d4d6c0f2 --- /dev/null +++ b/addons/godot_rl_agents/onnx/csharp/docs/SessionConfigurator.xml @@ -0,0 +1,29 @@ + + + + + The main SessionConfigurator Class that handles the execution options and providers for the inference process. + + + + + Creates a SessionOptions with all available execution providers. + + SessionOptions with all available execution providers. + + + + Appends any execution provider available in the current system. + + + This function is mainly verbose for tracking implementation progress of different compute APIs. + + + + + Checks for available GPUs. + + An integer identifier for each compute platform. + + + \ No newline at end of file diff --git a/addons/godot_rl_agents/onnx/wrapper/ONNX_wrapper.gd b/addons/godot_rl_agents/onnx/wrapper/ONNX_wrapper.gd new file mode 100644 index 0000000000000000000000000000000000000000..54b317ebeb94aa89e0684117ae144c38908ee57d --- /dev/null +++ b/addons/godot_rl_agents/onnx/wrapper/ONNX_wrapper.gd @@ -0,0 +1,19 @@ +extends Node +class_name ONNXModel +var inferencer_script = load("res://addons/godot_rl_agents/onnx/csharp/ONNXInference.cs") + +var inferencer = null + +# Must provide the path to the model and the batch size +func _init(model_path, batch_size): + inferencer = inferencer_script.new() + inferencer.Initialize(model_path, batch_size) + +# This function is the one that will be called from the game, +# requires the observation as an array and the state_ins as an int +# returns an Array containing the action the model takes. +func run_inference(obs : Array, state_ins : int) -> Dictionary: + if inferencer == null: + printerr("Inferencer not initialized") + return {} + return inferencer.RunInference(obs, state_ins) diff --git a/addons/godot_rl_agents/sensors/sensors_2d/ExampleRaycastSensor2D.tscn b/addons/godot_rl_agents/sensors/sensors_2d/ExampleRaycastSensor2D.tscn index 1cbc7e81569cb8805a57b464ec128de57362035d..66be9285d15d0559f7816f900ab6a57f8c88e980 100644 --- a/addons/godot_rl_agents/sensors/sensors_2d/ExampleRaycastSensor2D.tscn +++ b/addons/godot_rl_agents/sensors/sensors_2d/ExampleRaycastSensor2D.tscn @@ -1,8 +1,8 @@ -[gd_scene load_steps=5 format=2] +[gd_scene load_steps=5 format=3 uid="uid://ddeq7mn1ealyc"] -[ext_resource path="res://sensors/sensors_2d/RaycastSensor2D.gd" type="Script" id=1] +[ext_resource type="Script" path="res://sensors/sensors_2d/RaycastSensor2D.gd" id="1"] -[sub_resource type="GDScript" id=2] +[sub_resource type="GDScript" id="2"] script/source = "extends Node2D @@ -12,7 +12,7 @@ func _physics_process(delta: float) -> void: " -[sub_resource type="GDScript" id=1] +[sub_resource type="GDScript" id="1"] script/source = "extends RayCast2D var steps = 1 @@ -26,23 +26,23 @@ func _physics_process(delta: float) -> void: print(is_colliding()) " -[sub_resource type="CircleShape2D" id=3] +[sub_resource type="CircleShape2D" id="3"] [node name="ExampleRaycastSensor2D" type="Node2D"] -script = SubResource( 2 ) +script = SubResource("2") [node name="ExampleAgent" type="Node2D" parent="."] -position = Vector2( 573, 314 ) +position = Vector2(573, 314) rotation = 0.286234 [node name="RaycastSensor2D" type="Node2D" parent="ExampleAgent"] -script = ExtResource( 1 ) +script = ExtResource("1") [node name="TestRayCast2D" type="RayCast2D" parent="."] -script = SubResource( 1 ) +script = SubResource("1") [node name="StaticBody2D" type="StaticBody2D" parent="."] -position = Vector2( 1, 52 ) +position = Vector2(1, 52) [node name="CollisionShape2D" type="CollisionShape2D" parent="StaticBody2D"] -shape = SubResource( 3 ) +shape = SubResource("3") diff --git a/addons/godot_rl_agents/sensors/sensors_2d/ISensor2D.gd b/addons/godot_rl_agents/sensors/sensors_2d/ISensor2D.gd index fcdfa8d5d2f664a5e0155eb8e71b45fedc8ce7fc..ec20f08a8d37cf1232fc12d8ee4f23b5ba845602 100644 --- a/addons/godot_rl_agents/sensors/sensors_2d/ISensor2D.gd +++ b/addons/godot_rl_agents/sensors/sensors_2d/ISensor2D.gd @@ -1,7 +1,7 @@ extends Node2D class_name ISensor2D -var _obs : Array +var _obs : Array = [] var _active := false func get_observation(): diff --git a/addons/godot_rl_agents/sensors/sensors_2d/RaycastSensor2D.gd b/addons/godot_rl_agents/sensors/sensors_2d/RaycastSensor2D.gd index 25855ffd2ea44d9d8ad384fd8462f0f070ef96e8..09363c409f59b0ef1d68131b77c0a2cba71805d8 100644 --- a/addons/godot_rl_agents/sensors/sensors_2d/RaycastSensor2D.gd +++ b/addons/godot_rl_agents/sensors/sensors_2d/RaycastSensor2D.gd @@ -1,6 +1,24 @@ +@tool extends ISensor2D class_name RaycastSensor2D -@tool + +@export_flags_2d_physics var collision_mask := 1: + get: return collision_mask + set(value): + collision_mask = value + _update() + +@export var collide_with_areas := false: + get: return collide_with_areas + set(value): + collide_with_areas = value + _update() + +@export var collide_with_bodies := true: + get: return collide_with_bodies + set(value): + collide_with_bodies = value + _update() @export var n_rays := 16.0: get: return n_rays @@ -8,18 +26,18 @@ class_name RaycastSensor2D n_rays = value _update() -@export var ray_length := 200:# (float,5,200,5.0) +@export_range(5,200,5.0) var ray_length := 200: get: return ray_length set(value): ray_length = value _update() -@export var cone_width := 360.0:# (float,5,360,5.0) +@export_range(5,360,5.0) var cone_width := 360.0: get: return cone_width set(value): cone_width = value _update() -@export var debug_draw := false : +@export var debug_draw := true : get: return debug_draw set(value): debug_draw = value @@ -31,12 +49,16 @@ var rays := [] func _update(): if Engine.is_editor_hint(): - _spawn_nodes() + if debug_draw: + _spawn_nodes() + else: + for ray in get_children(): + if ray is RayCast2D: + remove_child(ray) func _ready() -> void: _spawn_nodes() - func _spawn_nodes(): for ray in rays: ray.queue_free() @@ -55,7 +77,9 @@ func _spawn_nodes(): )) ray.set_name("node_"+str(i)) ray.enabled = true - ray.collide_with_areas = true + ray.collide_with_areas = collide_with_areas + ray.collide_with_bodies = collide_with_bodies + ray.collision_mask = collision_mask add_child(ray) rays.append(ray) diff --git a/addons/godot_rl_agents/sensors/sensors_2d/RaycastSensor2D.tscn b/addons/godot_rl_agents/sensors/sensors_2d/RaycastSensor2D.tscn index e4818d542146f1060303e130dc47d0856036423c..5ca402c08305efedbfc6afd0a1893a0ca2e11cfd 100644 --- a/addons/godot_rl_agents/sensors/sensors_2d/RaycastSensor2D.tscn +++ b/addons/godot_rl_agents/sensors/sensors_2d/RaycastSensor2D.tscn @@ -1,6 +1,7 @@ -[gd_scene load_steps=2 format=2] +[gd_scene load_steps=2 format=3 uid="uid://drvfihk5esgmv"] -[ext_resource path="res://addons/godot_rl_agents/sensors/sensors_2d/RaycastSensor2D.gd" type="Script" id=1] +[ext_resource type="Script" path="res://addons/godot_rl_agents/sensors/sensors_2d/RaycastSensor2D.gd" id="1"] [node name="RaycastSensor2D" type="Node2D"] -script = ExtResource( 1 ) +script = ExtResource("1") +n_rays = 17.0 diff --git a/addons/godot_rl_agents/sensors/sensors_3d/ISensor3D.gd b/addons/godot_rl_agents/sensors/sensors_3d/ISensor3D.gd index ce361b192d1f6073a0c324118d4896cc26dc1cbc..d57503b5006e9384c4a9ce7de348d74a5b58d322 100644 --- a/addons/godot_rl_agents/sensors/sensors_3d/ISensor3D.gd +++ b/addons/godot_rl_agents/sensors/sensors_3d/ISensor3D.gd @@ -1,7 +1,7 @@ extends Node3D class_name ISensor3D -var _obs : Array +var _obs : Array = [] var _active := false func get_observation(): diff --git a/addons/godot_rl_agents/sensors/sensors_3d/RaycastSensor3D.gd b/addons/godot_rl_agents/sensors/sensors_3d/RaycastSensor3D.gd index 69049a535c9314b3332392bc1cc8474510ae240c..1f36193ae7aeb4431032425669a6d01e2825a9d0 100644 --- a/addons/godot_rl_agents/sensors/sensors_3d/RaycastSensor3D.gd +++ b/addons/godot_rl_agents/sensors/sensors_3d/RaycastSensor3D.gd @@ -1,6 +1,6 @@ +@tool extends ISensor3D class_name RayCastSensor3D -@tool @export_flags_3d_physics var collision_mask = 1: get: return collision_mask set(value): @@ -10,7 +10,7 @@ class_name RayCastSensor3D get: return boolean_class_mask set(value): boolean_class_mask = value - _update() + _update() @export var n_rays_width := 6.0: get: return n_rays_width @@ -42,18 +42,18 @@ class_name RayCastSensor3D cone_height = value _update() -@export var collide_with_bodies := true: - get: return collide_with_bodies - set(value): - collide_with_bodies = value - _update() - @export var collide_with_areas := false: get: return collide_with_areas set(value): collide_with_areas = value _update() +@export var collide_with_bodies := true: + get: return collide_with_bodies + set(value): + collide_with_bodies = value + _update() + @export var class_sensor := false var rays := [] diff --git a/addons/godot_rl_agents/sensors/sensors_3d/RaycastSensor3D.tscn b/addons/godot_rl_agents/sensors/sensors_3d/RaycastSensor3D.tscn index af81ce143500c606c30ecce6d127d0fbbdd4963f..39aa7c645d3a093cdd02408a62cfac507949ded7 100644 --- a/addons/godot_rl_agents/sensors/sensors_3d/RaycastSensor3D.tscn +++ b/addons/godot_rl_agents/sensors/sensors_3d/RaycastSensor3D.tscn @@ -1,49 +1,33 @@ -[gd_scene load_steps=2 format=2] +[gd_scene load_steps=2 format=3 uid="uid://b803cbh1fmy66"] -[ext_resource path="res://addons/godot_rl_agents/sensors/sensors_3d/RaycastSensor3D.gd" type="Script" id=1] +[ext_resource type="Script" path="res://addons/godot_rl_agents/sensors/sensors_3d/RaycastSensor3D.gd" id="1"] [node name="RaycastSensor3D" type="Node3D"] -script = ExtResource( 1 ) +script = ExtResource("1") n_rays_width = 4.0 n_rays_height = 2.0 ray_length = 11.0 -[node name="node_0 2" type="RayCast3D" parent="."] -enabled = true -cast_to = Vector3( -4.06608, -2.84701, 9.81639 ) -collide_with_areas = true - -[node name="node_0 3" type="RayCast3D" parent="."] -enabled = true -cast_to = Vector3( -4.06608, 2.84701, 9.81639 ) -collide_with_areas = true - -[node name="node_1 0" type="RayCast3D" parent="."] -enabled = true -cast_to = Vector3( -1.38686, -2.84701, 10.5343 ) -collide_with_areas = true - -[node name="node_1 1" type="RayCast3D" parent="."] -enabled = true -cast_to = Vector3( -1.38686, 2.84701, 10.5343 ) -collide_with_areas = true - -[node name="node_2 0" type="RayCast3D" parent="."] -enabled = true -cast_to = Vector3( 1.38686, -2.84701, 10.5343 ) -collide_with_areas = true - -[node name="node_2 1" type="RayCast3D" parent="."] -enabled = true -cast_to = Vector3( 1.38686, 2.84701, 10.5343 ) -collide_with_areas = true - -[node name="node_3 0" type="RayCast3D" parent="."] -enabled = true -cast_to = Vector3( 4.06608, -2.84701, 9.81639 ) -collide_with_areas = true - -[node name="node_3 1" type="RayCast3D" parent="."] -enabled = true -cast_to = Vector3( 4.06608, 2.84701, 9.81639 ) -collide_with_areas = true +[node name="@node_0 0@18991" type="RayCast3D" parent="."] +target_position = Vector3(-4.06608, -2.84701, 9.81639) + +[node name="node_0 1" type="RayCast3D" parent="."] +target_position = Vector3(-4.06608, 2.84701, 9.81639) + +[node name="@node_1 0@18992" type="RayCast3D" parent="."] +target_position = Vector3(-1.38686, -2.84701, 10.5343) + +[node name="@node_1 1@18993" type="RayCast3D" parent="."] +target_position = Vector3(-1.38686, 2.84701, 10.5343) + +[node name="@node_2 0@18994" type="RayCast3D" parent="."] +target_position = Vector3(1.38686, -2.84701, 10.5343) + +[node name="@node_2 1@18995" type="RayCast3D" parent="."] +target_position = Vector3(1.38686, 2.84701, 10.5343) + +[node name="@node_3 0@18996" type="RayCast3D" parent="."] +target_position = Vector3(4.06608, -2.84701, 9.81639) + +[node name="@node_3 1@18997" type="RayCast3D" parent="."] +target_position = Vector3(4.06608, 2.84701, 9.81639) diff --git a/addons/godot_rl_agents/sync.gd b/addons/godot_rl_agents/sync.gd index cd4f268f80fd3ad45cef902e4fa3fcd57484db47..a497894631d7d38f1544a5b2aa04991db0cbf50b 100644 --- a/addons/godot_rl_agents/sync.gd +++ b/addons/godot_rl_agents/sync.gd @@ -2,7 +2,9 @@ extends Node # --fixed-fps 2000 --disable-render-loop @export var action_repeat := 8 @export var speed_up = 1 -var n_action_steps = 0 +@export var onnx_model_path := "" + +@onready var start_time = Time.get_ticks_msec() const MAJOR_VERSION := "0" const MINOR_VERSION := "3" @@ -16,21 +18,122 @@ var should_connect = true var agents var need_to_send_obs = false var args = null -@onready var start_time = Time.get_ticks_msec() var initialized = false var just_reset = false +var onnx_model = null +var n_action_steps = 0 +var _action_space : Dictionary +var _obs_space : Dictionary # Called when the node enters the scene tree for the first time. func _ready(): - await get_tree().root.ready get_tree().set_pause(true) _initialize() await get_tree().create_timer(1.0).timeout get_tree().set_pause(false) + +func _initialize(): + _get_agents() + _obs_space = agents[0].get_obs_space() + _action_space = agents[0].get_action_space() + args = _get_args() + Engine.physics_ticks_per_second = _get_speedup() * 60 # Replace with function body. + Engine.time_scale = _get_speedup() * 1.0 + prints("physics ticks", Engine.physics_ticks_per_second, Engine.time_scale, _get_speedup(), speed_up) + + + connected = connect_to_server() + if connected: + _set_heuristic("model") + _handshake() + _send_env_info() + elif onnx_model_path != "": + onnx_model = ONNXModel.new(onnx_model_path, 1) + _set_heuristic("model") + else: + _set_heuristic("human") + + _set_seed() + _set_action_repeat() + initialized = true + +func _physics_process(delta): + # two modes, human control, agent control + # pause tree, send obs, get actions, set actions, unpause tree + if n_action_steps % action_repeat != 0: + n_action_steps += 1 + return + + n_action_steps += 1 + + if connected: + get_tree().set_pause(true) + + if just_reset: + just_reset = false + var obs = _get_obs_from_agents() + + var reply = { + "type": "reset", + "obs": obs + } + _send_dict_as_json_message(reply) + # this should go straight to getting the action and setting it checked the agent, no need to perform one phyics tick + get_tree().set_pause(false) + return + + if need_to_send_obs: + need_to_send_obs = false + var reward = _get_reward_from_agents() + var done = _get_done_from_agents() + #_reset_agents_if_done() # this ensures the new observation is from the next env instance : NEEDS REFACTOR + + var obs = _get_obs_from_agents() + + var reply = { + "type": "step", + "obs": obs, + "reward": reward, + "done": done + } + _send_dict_as_json_message(reply) + + var handled = handle_message() + + elif onnx_model != null: + var obs : Array = _get_obs_from_agents() + + var actions = [] + for o in obs: + var action = onnx_model.run_inference(o["obs"], 1.0) + action["output"] = clamp_array(action["output"], -1.0, 1.0) + var action_dict = _extract_action_dict(action["output"]) + actions.append(action_dict) + + _set_agent_actions(actions) + need_to_send_obs = true + get_tree().set_pause(false) + _reset_agents_if_done() + else: + _reset_agents_if_done() + +func _extract_action_dict(action_array: Array): + var index = 0 + var result = {} + for key in _action_space.keys(): + var size = _action_space[key]["size"] + if _action_space[key]["action_type"] == "discrete": + result[key] = round(action_array[index]) + else: + result[key] = action_array.slice(index,index+size) + index += size + + return result + func _get_agents(): agents = get_tree().get_nodes_in_group("AGENT") @@ -75,17 +178,16 @@ func _send_dict_as_json_message(dict): func _send_env_info(): var json_dict = _get_dict_json_message() assert(json_dict["type"] == "env_info") - + + var message = { "type" : "env_info", - #"obs_size": agents[0].get_obs_size(), - "observation_space": agents[0].get_obs_space(), - "action_space":agents[0].get_action_space(), + "observation_space": _obs_space, + "action_space":_action_space, "n_agents": len(agents) } _send_dict_as_json_message(message) - func connect_to_server(): print("Waiting for one second to allow server to start") OS.delay_msec(1000) @@ -98,17 +200,13 @@ func connect_to_server(): var connect = stream.connect_to_host(ip, port) stream.set_no_delay(true) # TODO check if this improves performance or not stream.poll() + # Fetch the status until it is either connected (2) or failed to connect (3) + while stream.get_status() < 2: + stream.poll() return stream.get_status() == 2 func _get_args(): print("getting command line arguments") -# var arguments = {} -# for argument in OS.get_cmdline_args(): -# # Parse valid command-line arguments into a dictionary -# if argument.find("=") > -1: -# var key_value = argument.split("=") -# arguments[key_value[0].lstrip("--")] = key_value[1] - var arguments = {} for argument in OS.get_cmdline_args(): print(argument) @@ -139,70 +237,7 @@ func _set_action_repeat(): func disconnect_from_server(): stream.disconnect_from_host() -func _initialize(): - _get_agents() - - args = _get_args() - Engine.physics_ticks_per_second = _get_speedup() * 60 # Replace with function body. - Engine.time_scale = _get_speedup() * 1.0 - prints("physics ticks", Engine.physics_ticks_per_second, Engine.time_scale, _get_speedup(), speed_up) - - connected = connect_to_server() - if connected: - _set_heuristic("model") - _handshake() - _send_env_info() - else: - _set_heuristic("human") - - _set_seed() - _set_action_repeat() - initialized = true - -func _physics_process(delta): - # two modes, human control, agent control - # pause tree, send obs, get actions, set actions, unpause tree - if n_action_steps % action_repeat != 0: - n_action_steps += 1 - return - n_action_steps += 1 - - if connected: - get_tree().set_pause(true) - - if just_reset: - just_reset = false - var obs = _get_obs_from_agents() - - var reply = { - "type": "reset", - "obs": obs - } - _send_dict_as_json_message(reply) - # this should go straight to getting the action and setting it checked the agent, no need to perform one phyics tick - get_tree().set_pause(false) - return - - if need_to_send_obs: - need_to_send_obs = false - var reward = _get_reward_from_agents() - var done = _get_done_from_agents() - #_reset_agents_if_done() # this ensures the new observation is from the next env instance : NEEDS REFACTOR - - var obs = _get_obs_from_agents() - - var reply = { - "type": "step", - "obs": obs, - "reward": reward, - "done": done - } - _send_dict_as_json_message(reply) - - var handled = handle_message() - else: - _reset_agents_if_done() func handle_message() -> bool: # get json message: reset, step, close @@ -272,6 +307,7 @@ func _get_obs_from_agents(): var obs = [] for agent in agents: obs.append(agent.get_obs()) + return obs func _get_reward_from_agents(): @@ -293,3 +329,8 @@ func _set_agent_actions(actions): for i in range(len(actions)): agents[i].set_action(actions[i]) +func clamp_array(arr : Array, min:float, max:float): + var output : Array = [] + for a in arr: + output.append(clamp(a, min, max)) + return output diff --git a/assets/anim.png.import b/assets/anim.png.import index 37707db0ef178845b84237658ab7569b33f53b3f..a0754a6fb6177526466d37597e49cf8481591458 100644 --- a/assets/anim.png.import +++ b/assets/anim.png.import @@ -4,23 +4,22 @@ importer="texture" type="CompressedTexture2D" uid="uid://peqcg52efhhf" path.s3tc="res://.godot/imported/anim.png-a4a46e776babbe4a4c1d589b34a3d451.s3tc.ctex" -path.etc2="res://.godot/imported/anim.png-a4a46e776babbe4a4c1d589b34a3d451.etc2.ctex" metadata={ -"imported_formats": ["s3tc", "etc2"], +"imported_formats": ["s3tc_bptc"], "vram_texture": true } [deps] source_file="res://assets/anim.png" -dest_files=["res://.godot/imported/anim.png-a4a46e776babbe4a4c1d589b34a3d451.s3tc.ctex", "res://.godot/imported/anim.png-a4a46e776babbe4a4c1d589b34a3d451.etc2.ctex"] +dest_files=["res://.godot/imported/anim.png-a4a46e776babbe4a4c1d589b34a3d451.s3tc.ctex"] [params] compress/mode=2 +compress/high_quality=false compress/lossy_quality=0.7 compress/hdr_compression=2 -compress/bptc_ldr=0 compress/normal_map=0 compress/channel_pack=0 mipmaps/generate=true diff --git a/assets/glb_files/cars.glb.import b/assets/glb_files/cars.glb.import index 00c063d9bccdea7d2165e49d16b25e4e487718dc..b53ee34948448940d39998a58ddf9b93c463d866 100644 --- a/assets/glb_files/cars.glb.import +++ b/assets/glb_files/cars.glb.import @@ -25,5 +25,8 @@ meshes/lightmap_texel_size=0.2 skins/use_named_skins=true animation/import=true animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true import_script/path="" _subresources={} +gltf/embedded_image_handling=1 diff --git a/assets/glb_files/cars_ImphenziaPalette01.png b/assets/glb_files/cars_ImphenziaPalette01.png new file mode 100644 index 0000000000000000000000000000000000000000..be6d8d1546c174c1655c8586081a99c244d2a993 --- /dev/null +++ b/assets/glb_files/cars_ImphenziaPalette01.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:617bd70bdf904dab6a4ad9ab9b400276db1c8b4567eaaf2302e03fe67da9df96 +size 281 diff --git a/assets/glb_files/cars_ImphenziaPalette01.png.import b/assets/glb_files/cars_ImphenziaPalette01.png.import new file mode 100644 index 0000000000000000000000000000000000000000..d2a042a10e1e0c0395475bd2665f71a8e70c7941 --- /dev/null +++ b/assets/glb_files/cars_ImphenziaPalette01.png.import @@ -0,0 +1,36 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://lplg5wbu6rck" +path.s3tc="res://.godot/imported/cars_ImphenziaPalette01.png-7acd95a591b7ca70c8f1fd67ef9ff008.s3tc.ctex" +metadata={ +"imported_formats": ["s3tc_bptc"], +"vram_texture": true +} +generator_parameters={} + +[deps] + +source_file="res://assets/glb_files/cars_ImphenziaPalette01.png" +dest_files=["res://.godot/imported/cars_ImphenziaPalette01.png-7acd95a591b7ca70c8f1fd67ef9ff008.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 diff --git a/assets/glb_files/forest.glb.import b/assets/glb_files/forest.glb.import index 627d24d5c3b8e8ae8d2a564974be28b984226ce9..930258c3ae55ee32b463150f721c75ad6fbd8715 100644 --- a/assets/glb_files/forest.glb.import +++ b/assets/glb_files/forest.glb.import @@ -25,5 +25,8 @@ meshes/lightmap_texel_size=0.2 skins/use_named_skins=true animation/import=true animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true import_script/path="" _subresources={} +gltf/embedded_image_handling=1 diff --git a/assets/glb_files/forest_ImphenziaPalette01.png b/assets/glb_files/forest_ImphenziaPalette01.png new file mode 100644 index 0000000000000000000000000000000000000000..be6d8d1546c174c1655c8586081a99c244d2a993 --- /dev/null +++ b/assets/glb_files/forest_ImphenziaPalette01.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:617bd70bdf904dab6a4ad9ab9b400276db1c8b4567eaaf2302e03fe67da9df96 +size 281 diff --git a/assets/glb_files/forest_ImphenziaPalette01.png.import b/assets/glb_files/forest_ImphenziaPalette01.png.import new file mode 100644 index 0000000000000000000000000000000000000000..729978cb19a63dc7f543b23aa4e76816d99f1028 --- /dev/null +++ b/assets/glb_files/forest_ImphenziaPalette01.png.import @@ -0,0 +1,36 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cohp2m354c5co" +path.s3tc="res://.godot/imported/forest_ImphenziaPalette01.png-1a7371247fb507942d31131c906fef49.s3tc.ctex" +metadata={ +"imported_formats": ["s3tc_bptc"], +"vram_texture": true +} +generator_parameters={} + +[deps] + +source_file="res://assets/glb_files/forest_ImphenziaPalette01.png" +dest_files=["res://.godot/imported/forest_ImphenziaPalette01.png-1a7371247fb507942d31131c906fef49.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 diff --git a/assets/glb_files/green_jeep.glb.import b/assets/glb_files/green_jeep.glb.import index 8ad3026dfdc9ce71ed64d890370965408e48763e..71c5fdfe0e2ec780bda03ab2058f3633479ca28c 100644 --- a/assets/glb_files/green_jeep.glb.import +++ b/assets/glb_files/green_jeep.glb.import @@ -25,5 +25,8 @@ meshes/lightmap_texel_size=0.2 skins/use_named_skins=true animation/import=true animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true import_script/path="" _subresources={} +gltf/embedded_image_handling=1 diff --git a/assets/glb_files/green_jeep_ImphenziaPalette01.png b/assets/glb_files/green_jeep_ImphenziaPalette01.png new file mode 100644 index 0000000000000000000000000000000000000000..be6d8d1546c174c1655c8586081a99c244d2a993 --- /dev/null +++ b/assets/glb_files/green_jeep_ImphenziaPalette01.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:617bd70bdf904dab6a4ad9ab9b400276db1c8b4567eaaf2302e03fe67da9df96 +size 281 diff --git a/assets/glb_files/green_jeep_ImphenziaPalette01.png.import b/assets/glb_files/green_jeep_ImphenziaPalette01.png.import new file mode 100644 index 0000000000000000000000000000000000000000..92340dce0bb163b611eca9272b7dfee5e8ca45ce --- /dev/null +++ b/assets/glb_files/green_jeep_ImphenziaPalette01.png.import @@ -0,0 +1,36 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dptqjb3uhxphq" +path.s3tc="res://.godot/imported/green_jeep_ImphenziaPalette01.png-dfba6b98a949e0f13a73ac506292cb08.s3tc.ctex" +metadata={ +"imported_formats": ["s3tc_bptc"], +"vram_texture": true +} +generator_parameters={} + +[deps] + +source_file="res://assets/glb_files/green_jeep_ImphenziaPalette01.png" +dest_files=["res://.godot/imported/green_jeep_ImphenziaPalette01.png-dfba6b98a949e0f13a73ac506292cb08.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 diff --git a/assets/glb_files/kenny/ambulance.glb.import b/assets/glb_files/kenny/ambulance.glb.import index 18c6cd8bf31fefc01042d3e64c5c2b71ad6cd33c..acca589c426cf72e89154429682b14d41ba62b36 100644 --- a/assets/glb_files/kenny/ambulance.glb.import +++ b/assets/glb_files/kenny/ambulance.glb.import @@ -25,5 +25,8 @@ meshes/lightmap_texel_size=0.2 skins/use_named_skins=true animation/import=true animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true import_script/path="" _subresources={} +gltf/embedded_image_handling=1 diff --git a/assets/glb_files/kenny/delivery.glb.import b/assets/glb_files/kenny/delivery.glb.import index 5c4397b30d0785572b57b8035f3b0c29fddf0ad8..9de4c1bba4725e3b5861509582aa17a31e5f07be 100644 --- a/assets/glb_files/kenny/delivery.glb.import +++ b/assets/glb_files/kenny/delivery.glb.import @@ -25,5 +25,8 @@ meshes/lightmap_texel_size=0.2 skins/use_named_skins=true animation/import=true animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true import_script/path="" _subresources={} +gltf/embedded_image_handling=1 diff --git a/assets/glb_files/kenny/deliveryFlat.glb.import b/assets/glb_files/kenny/deliveryFlat.glb.import index b03637c85c38f994306030b7442aa045abea29ba..95abb24f1445aadf1f034949f078f33318795f81 100644 --- a/assets/glb_files/kenny/deliveryFlat.glb.import +++ b/assets/glb_files/kenny/deliveryFlat.glb.import @@ -25,5 +25,8 @@ meshes/lightmap_texel_size=0.2 skins/use_named_skins=true animation/import=true animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true import_script/path="" _subresources={} +gltf/embedded_image_handling=1 diff --git a/assets/glb_files/kenny/firetruck.glb.import b/assets/glb_files/kenny/firetruck.glb.import index 60513627b60aa79ef75839c094545b23305afcda..29650c9664eebe8ef6eca5bc78d2df373533ca34 100644 --- a/assets/glb_files/kenny/firetruck.glb.import +++ b/assets/glb_files/kenny/firetruck.glb.import @@ -25,5 +25,8 @@ meshes/lightmap_texel_size=0.2 skins/use_named_skins=true animation/import=true animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true import_script/path="" _subresources={} +gltf/embedded_image_handling=1 diff --git a/assets/glb_files/kenny/garbageTruck.glb.import b/assets/glb_files/kenny/garbageTruck.glb.import index 1bfd016123788b7591b7cd57b5c39c7c447874fc..b4d76c41c4c3420356332dc0561cf9c2470fed01 100644 --- a/assets/glb_files/kenny/garbageTruck.glb.import +++ b/assets/glb_files/kenny/garbageTruck.glb.import @@ -25,5 +25,8 @@ meshes/lightmap_texel_size=0.2 skins/use_named_skins=true animation/import=true animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true import_script/path="" _subresources={} +gltf/embedded_image_handling=1 diff --git a/assets/glb_files/kenny/hatchbackSports.glb.import b/assets/glb_files/kenny/hatchbackSports.glb.import index 5893e6a1c947f17df56c2defd82994c38112168d..1282c718d9dfe690b0311177362905687af2c7d4 100644 --- a/assets/glb_files/kenny/hatchbackSports.glb.import +++ b/assets/glb_files/kenny/hatchbackSports.glb.import @@ -25,5 +25,8 @@ meshes/lightmap_texel_size=0.2 skins/use_named_skins=true animation/import=true animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true import_script/path="" _subresources={} +gltf/embedded_image_handling=1 diff --git a/assets/glb_files/kenny/police.glb.import b/assets/glb_files/kenny/police.glb.import index 888ca6426068eeb317005eb7de466a669f14ff50..f76a55379e77a4d8cf484f1c5f95258dd77a7f39 100644 --- a/assets/glb_files/kenny/police.glb.import +++ b/assets/glb_files/kenny/police.glb.import @@ -25,5 +25,8 @@ meshes/lightmap_texel_size=0.2 skins/use_named_skins=true animation/import=true animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true import_script/path="" _subresources={} +gltf/embedded_image_handling=1 diff --git a/assets/glb_files/kenny/race.glb.import b/assets/glb_files/kenny/race.glb.import index cd2494601dc4dd6db6321936e9f6c481587174de..40caec2133d985a28e14deff71035976b62b6cfc 100644 --- a/assets/glb_files/kenny/race.glb.import +++ b/assets/glb_files/kenny/race.glb.import @@ -25,5 +25,8 @@ meshes/lightmap_texel_size=0.2 skins/use_named_skins=true animation/import=true animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true import_script/path="" _subresources={} +gltf/embedded_image_handling=1 diff --git a/assets/glb_files/kenny/raceFuture.glb.import b/assets/glb_files/kenny/raceFuture.glb.import index ba6e217d41ec1f5f88e07b64ff2df304db8e96fe..22fe3014a38d820c59045afd67faff2d5bd675b7 100644 --- a/assets/glb_files/kenny/raceFuture.glb.import +++ b/assets/glb_files/kenny/raceFuture.glb.import @@ -25,5 +25,8 @@ meshes/lightmap_texel_size=0.2 skins/use_named_skins=true animation/import=true animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true import_script/path="" _subresources={} +gltf/embedded_image_handling=1 diff --git a/assets/glb_files/kenny/sedan.glb.import b/assets/glb_files/kenny/sedan.glb.import index cea245c80f933e098b5ed56d4ddc313150042bf0..aad9b954640963cfd730465764b773aa3f427fc8 100644 --- a/assets/glb_files/kenny/sedan.glb.import +++ b/assets/glb_files/kenny/sedan.glb.import @@ -25,5 +25,8 @@ meshes/lightmap_texel_size=0.2 skins/use_named_skins=true animation/import=true animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true import_script/path="" _subresources={} +gltf/embedded_image_handling=1 diff --git a/assets/glb_files/kenny/sedanSports.glb.import b/assets/glb_files/kenny/sedanSports.glb.import index 29eabaa68ef7b4540442950dee6a4fdca56a549c..d27fff21930f18c89749bc9ab42d37e797a36d65 100644 --- a/assets/glb_files/kenny/sedanSports.glb.import +++ b/assets/glb_files/kenny/sedanSports.glb.import @@ -25,5 +25,8 @@ meshes/lightmap_texel_size=0.2 skins/use_named_skins=true animation/import=true animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true import_script/path="" _subresources={} +gltf/embedded_image_handling=1 diff --git a/assets/glb_files/kenny/suv.glb.import b/assets/glb_files/kenny/suv.glb.import index a8add0041c26abac901261d813e818b14d0e8a53..1d5388268b3ea95dd9d8a4ed9819575fc56dc73a 100644 --- a/assets/glb_files/kenny/suv.glb.import +++ b/assets/glb_files/kenny/suv.glb.import @@ -25,5 +25,8 @@ meshes/lightmap_texel_size=0.2 skins/use_named_skins=true animation/import=true animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true import_script/path="" _subresources={} +gltf/embedded_image_handling=1 diff --git a/assets/glb_files/kenny/suvLuxury.glb.import b/assets/glb_files/kenny/suvLuxury.glb.import index f7c1678632777430fb6f8a8cdd28f8bb5f979da1..5373bf98d5d4e910bab1e2e9156bec917e08bb5b 100644 --- a/assets/glb_files/kenny/suvLuxury.glb.import +++ b/assets/glb_files/kenny/suvLuxury.glb.import @@ -25,5 +25,8 @@ meshes/lightmap_texel_size=0.2 skins/use_named_skins=true animation/import=true animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true import_script/path="" _subresources={} +gltf/embedded_image_handling=1 diff --git a/assets/glb_files/kenny/taxi.glb.import b/assets/glb_files/kenny/taxi.glb.import index c953cae3da6052a3705c2aa8e0c9b12125a8e0cb..d214f5db8dba6c9a6c811e17a7ce99b79d0c3d8d 100644 --- a/assets/glb_files/kenny/taxi.glb.import +++ b/assets/glb_files/kenny/taxi.glb.import @@ -25,5 +25,8 @@ meshes/lightmap_texel_size=0.2 skins/use_named_skins=true animation/import=true animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true import_script/path="" _subresources={} +gltf/embedded_image_handling=1 diff --git a/assets/glb_files/kenny/track_pieces/bannerTowerGreen.glb.import b/assets/glb_files/kenny/track_pieces/bannerTowerGreen.glb.import index 4f3cf082b03b4a69b30a26be954f95b1999be104..787422b8b975b09d4a89922036e97ed6ce55e41b 100644 --- a/assets/glb_files/kenny/track_pieces/bannerTowerGreen.glb.import +++ b/assets/glb_files/kenny/track_pieces/bannerTowerGreen.glb.import @@ -25,5 +25,8 @@ meshes/lightmap_texel_size=0.2 skins/use_named_skins=true animation/import=true animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true import_script/path="" _subresources={} +gltf/embedded_image_handling=1 diff --git a/assets/glb_files/kenny/track_pieces/bannerTowerRed.glb.import b/assets/glb_files/kenny/track_pieces/bannerTowerRed.glb.import index ac4e4560b5568626ea33892b49ebf18c4ac4d0b9..c6486874cddaf5166fc1141b728e2377dc871fbf 100644 --- a/assets/glb_files/kenny/track_pieces/bannerTowerRed.glb.import +++ b/assets/glb_files/kenny/track_pieces/bannerTowerRed.glb.import @@ -25,5 +25,8 @@ meshes/lightmap_texel_size=0.2 skins/use_named_skins=true animation/import=true animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true import_script/path="" _subresources={} +gltf/embedded_image_handling=1 diff --git a/assets/glb_files/kenny/track_pieces/barrierRed.glb.import b/assets/glb_files/kenny/track_pieces/barrierRed.glb.import index 99e0b734c45079511927dee0a6b2faf5f440c6d5..df41daf04f4904bef1c6ecea11cff6da22757bc6 100644 --- a/assets/glb_files/kenny/track_pieces/barrierRed.glb.import +++ b/assets/glb_files/kenny/track_pieces/barrierRed.glb.import @@ -25,5 +25,8 @@ meshes/lightmap_texel_size=0.2 skins/use_named_skins=true animation/import=true animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true import_script/path="" _subresources={} +gltf/embedded_image_handling=1 diff --git a/assets/glb_files/kenny/track_pieces/barrierWall.glb.import b/assets/glb_files/kenny/track_pieces/barrierWall.glb.import index 4aa2e33ce075734edab9a9945f3674160d285115..42858d1f065e62ea12d3785ef4c9581461e40d23 100644 --- a/assets/glb_files/kenny/track_pieces/barrierWall.glb.import +++ b/assets/glb_files/kenny/track_pieces/barrierWall.glb.import @@ -25,5 +25,8 @@ meshes/lightmap_texel_size=0.2 skins/use_named_skins=true animation/import=true animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true import_script/path="" _subresources={} +gltf/embedded_image_handling=1 diff --git a/assets/glb_files/kenny/track_pieces/barrierWhite.glb.import b/assets/glb_files/kenny/track_pieces/barrierWhite.glb.import index 8f1efbfcb685847c2b62262aa90c818d44a68db8..a214938446d0309cd7c410fc6ab81c56d7e89efe 100644 --- a/assets/glb_files/kenny/track_pieces/barrierWhite.glb.import +++ b/assets/glb_files/kenny/track_pieces/barrierWhite.glb.import @@ -25,5 +25,8 @@ meshes/lightmap_texel_size=0.2 skins/use_named_skins=true animation/import=true animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true import_script/path="" _subresources={} +gltf/embedded_image_handling=1 diff --git a/assets/glb_files/kenny/track_pieces/billboard.glb.import b/assets/glb_files/kenny/track_pieces/billboard.glb.import index 12d5733a0e7dbe817c2b4822ee8c6e1070cb5911..14096f2418c98a0f3b68888609e0d1f4cd8847ef 100644 --- a/assets/glb_files/kenny/track_pieces/billboard.glb.import +++ b/assets/glb_files/kenny/track_pieces/billboard.glb.import @@ -25,5 +25,8 @@ meshes/lightmap_texel_size=0.2 skins/use_named_skins=true animation/import=true animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true import_script/path="" _subresources={} +gltf/embedded_image_handling=1 diff --git a/assets/glb_files/kenny/track_pieces/billboardDouble_exclusive.glb.import b/assets/glb_files/kenny/track_pieces/billboardDouble_exclusive.glb.import index 197db74240e33251285ded4194de3f409a101bc9..bcefa2c4081d1d3dfd30725a2f0d1470220fa101 100644 --- a/assets/glb_files/kenny/track_pieces/billboardDouble_exclusive.glb.import +++ b/assets/glb_files/kenny/track_pieces/billboardDouble_exclusive.glb.import @@ -25,5 +25,8 @@ meshes/lightmap_texel_size=0.2 skins/use_named_skins=true animation/import=true animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true import_script/path="" _subresources={} +gltf/embedded_image_handling=1 diff --git a/assets/glb_files/kenny/track_pieces/billboardDouble_exclusive_tankcoBanner.png b/assets/glb_files/kenny/track_pieces/billboardDouble_exclusive_tankcoBanner.png new file mode 100644 index 0000000000000000000000000000000000000000..db2b9d0b4f255316c4f1be22141ea8153e895c5e --- /dev/null +++ b/assets/glb_files/kenny/track_pieces/billboardDouble_exclusive_tankcoBanner.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:62f0bb615c4ccd67ef9828ea2e7f3b669a3baabd84b70fce6f79ad5b61fb5caf +size 3976 diff --git a/assets/glb_files/kenny/track_pieces/billboardDouble_exclusive_tankcoBanner.png.import b/assets/glb_files/kenny/track_pieces/billboardDouble_exclusive_tankcoBanner.png.import new file mode 100644 index 0000000000000000000000000000000000000000..f948e674c19a40341838f71c5a3307c8d233a3db --- /dev/null +++ b/assets/glb_files/kenny/track_pieces/billboardDouble_exclusive_tankcoBanner.png.import @@ -0,0 +1,36 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://oy3u8eqdmc3a" +path.s3tc="res://.godot/imported/billboardDouble_exclusive_tankcoBanner.png-da1e29140c6bddf741bf49a27d4a6425.s3tc.ctex" +metadata={ +"imported_formats": ["s3tc_bptc"], +"vram_texture": true +} +generator_parameters={} + +[deps] + +source_file="res://assets/glb_files/kenny/track_pieces/billboardDouble_exclusive_tankcoBanner.png" +dest_files=["res://.godot/imported/billboardDouble_exclusive_tankcoBanner.png-da1e29140c6bddf741bf49a27d4a6425.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 diff --git a/assets/glb_files/kenny/track_pieces/billboardLow.glb.import b/assets/glb_files/kenny/track_pieces/billboardLow.glb.import index 01614d212c51026ac8a8fa2dba3225ae33244ec1..8b0e63965c334e29dd69727d6d42a55212232236 100644 --- a/assets/glb_files/kenny/track_pieces/billboardLow.glb.import +++ b/assets/glb_files/kenny/track_pieces/billboardLow.glb.import @@ -25,5 +25,8 @@ meshes/lightmap_texel_size=0.2 skins/use_named_skins=true animation/import=true animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true import_script/path="" _subresources={} +gltf/embedded_image_handling=1 diff --git a/assets/glb_files/kenny/track_pieces/billboardLow_tankcoBanner.png b/assets/glb_files/kenny/track_pieces/billboardLow_tankcoBanner.png new file mode 100644 index 0000000000000000000000000000000000000000..db2b9d0b4f255316c4f1be22141ea8153e895c5e --- /dev/null +++ b/assets/glb_files/kenny/track_pieces/billboardLow_tankcoBanner.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:62f0bb615c4ccd67ef9828ea2e7f3b669a3baabd84b70fce6f79ad5b61fb5caf +size 3976 diff --git a/assets/glb_files/kenny/track_pieces/billboardLow_tankcoBanner.png.import b/assets/glb_files/kenny/track_pieces/billboardLow_tankcoBanner.png.import new file mode 100644 index 0000000000000000000000000000000000000000..dc88c1b592c5ee325aba5ac06c85d86effbef7c9 --- /dev/null +++ b/assets/glb_files/kenny/track_pieces/billboardLow_tankcoBanner.png.import @@ -0,0 +1,36 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://uahamdg5yury" +path.s3tc="res://.godot/imported/billboardLow_tankcoBanner.png-682a59f3155064e86de71f174d6770f5.s3tc.ctex" +metadata={ +"imported_formats": ["s3tc_bptc"], +"vram_texture": true +} +generator_parameters={} + +[deps] + +source_file="res://assets/glb_files/kenny/track_pieces/billboardLow_tankcoBanner.png" +dest_files=["res://.godot/imported/billboardLow_tankcoBanner.png-682a59f3155064e86de71f174d6770f5.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 diff --git a/assets/glb_files/kenny/track_pieces/billboardLower.glb.import b/assets/glb_files/kenny/track_pieces/billboardLower.glb.import index ecee44e4cf477e5bc0502c6c3eb432e662afb5ab..cfb409c6a54c8ffc05d4466c16e5fdae94f27591 100644 --- a/assets/glb_files/kenny/track_pieces/billboardLower.glb.import +++ b/assets/glb_files/kenny/track_pieces/billboardLower.glb.import @@ -25,5 +25,8 @@ meshes/lightmap_texel_size=0.2 skins/use_named_skins=true animation/import=true animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true import_script/path="" _subresources={} +gltf/embedded_image_handling=1 diff --git a/assets/glb_files/kenny/track_pieces/billboardLower_tankcoBanner.png b/assets/glb_files/kenny/track_pieces/billboardLower_tankcoBanner.png new file mode 100644 index 0000000000000000000000000000000000000000..db2b9d0b4f255316c4f1be22141ea8153e895c5e --- /dev/null +++ b/assets/glb_files/kenny/track_pieces/billboardLower_tankcoBanner.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:62f0bb615c4ccd67ef9828ea2e7f3b669a3baabd84b70fce6f79ad5b61fb5caf +size 3976 diff --git a/assets/glb_files/kenny/track_pieces/billboardLower_tankcoBanner.png.import b/assets/glb_files/kenny/track_pieces/billboardLower_tankcoBanner.png.import new file mode 100644 index 0000000000000000000000000000000000000000..8bbf6abb5f8d0fc99e78739d48687ba107234ccf --- /dev/null +++ b/assets/glb_files/kenny/track_pieces/billboardLower_tankcoBanner.png.import @@ -0,0 +1,36 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b6qibogjgrfi4" +path.s3tc="res://.godot/imported/billboardLower_tankcoBanner.png-0adf8180ce2850a3d76f52aadf64489f.s3tc.ctex" +metadata={ +"imported_formats": ["s3tc_bptc"], +"vram_texture": true +} +generator_parameters={} + +[deps] + +source_file="res://assets/glb_files/kenny/track_pieces/billboardLower_tankcoBanner.png" +dest_files=["res://.godot/imported/billboardLower_tankcoBanner.png-0adf8180ce2850a3d76f52aadf64489f.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 diff --git a/assets/glb_files/kenny/track_pieces/billboard_tankcoBanner.png b/assets/glb_files/kenny/track_pieces/billboard_tankcoBanner.png new file mode 100644 index 0000000000000000000000000000000000000000..db2b9d0b4f255316c4f1be22141ea8153e895c5e --- /dev/null +++ b/assets/glb_files/kenny/track_pieces/billboard_tankcoBanner.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:62f0bb615c4ccd67ef9828ea2e7f3b669a3baabd84b70fce6f79ad5b61fb5caf +size 3976 diff --git a/assets/glb_files/kenny/track_pieces/billboard_tankcoBanner.png.import b/assets/glb_files/kenny/track_pieces/billboard_tankcoBanner.png.import new file mode 100644 index 0000000000000000000000000000000000000000..6b86c9cab8e5a6362cd44d951d32affe77dc567b --- /dev/null +++ b/assets/glb_files/kenny/track_pieces/billboard_tankcoBanner.png.import @@ -0,0 +1,36 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ckykqoq3kg3ky" +path.s3tc="res://.godot/imported/billboard_tankcoBanner.png-32f6c28bf4e6a489bf63ad025f1f052f.s3tc.ctex" +metadata={ +"imported_formats": ["s3tc_bptc"], +"vram_texture": true +} +generator_parameters={} + +[deps] + +source_file="res://assets/glb_files/kenny/track_pieces/billboard_tankcoBanner.png" +dest_files=["res://.godot/imported/billboard_tankcoBanner.png-32f6c28bf4e6a489bf63ad025f1f052f.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 diff --git a/assets/glb_files/kenny/track_pieces/camera_exclusive.glb.import b/assets/glb_files/kenny/track_pieces/camera_exclusive.glb.import index ddfc50128ada915326551c177b91d4ebeffe45e8..4396626614217ce040c8d623068beabb8d599a76 100644 --- a/assets/glb_files/kenny/track_pieces/camera_exclusive.glb.import +++ b/assets/glb_files/kenny/track_pieces/camera_exclusive.glb.import @@ -25,5 +25,8 @@ meshes/lightmap_texel_size=0.2 skins/use_named_skins=true animation/import=true animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true import_script/path="" _subresources={} +gltf/embedded_image_handling=1 diff --git a/assets/glb_files/kenny/track_pieces/fenceCurved.glb.import b/assets/glb_files/kenny/track_pieces/fenceCurved.glb.import index b2a277af0dd201aa961f16cef028db8cd696fd79..43d81404245f4e4131127f30af07f94eeaad2501 100644 --- a/assets/glb_files/kenny/track_pieces/fenceCurved.glb.import +++ b/assets/glb_files/kenny/track_pieces/fenceCurved.glb.import @@ -25,5 +25,8 @@ meshes/lightmap_texel_size=0.2 skins/use_named_skins=true animation/import=true animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true import_script/path="" _subresources={} +gltf/embedded_image_handling=1 diff --git a/assets/glb_files/kenny/track_pieces/fenceCurved_net.png b/assets/glb_files/kenny/track_pieces/fenceCurved_net.png new file mode 100644 index 0000000000000000000000000000000000000000..1ad349854e5161c6d8ef5b080f12eee0c22a3550 --- /dev/null +++ b/assets/glb_files/kenny/track_pieces/fenceCurved_net.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:48e7d550a2f282179c76baf3eeb35d2d5314b1f0edabab078a2584b1817ee129 +size 1089 diff --git a/assets/glb_files/kenny/track_pieces/fenceCurved_net.png.import b/assets/glb_files/kenny/track_pieces/fenceCurved_net.png.import new file mode 100644 index 0000000000000000000000000000000000000000..7b01aa583b03f9f680f6dc78d631d20d386a8c05 --- /dev/null +++ b/assets/glb_files/kenny/track_pieces/fenceCurved_net.png.import @@ -0,0 +1,36 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bm7yrj66t4w1f" +path.s3tc="res://.godot/imported/fenceCurved_net.png-0b246ae5e78d43b1f96a8edab2def1f2.s3tc.ctex" +metadata={ +"imported_formats": ["s3tc_bptc"], +"vram_texture": true +} +generator_parameters={} + +[deps] + +source_file="res://assets/glb_files/kenny/track_pieces/fenceCurved_net.png" +dest_files=["res://.godot/imported/fenceCurved_net.png-0b246ae5e78d43b1f96a8edab2def1f2.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 diff --git a/assets/glb_files/kenny/track_pieces/fenceStraight.glb.import b/assets/glb_files/kenny/track_pieces/fenceStraight.glb.import index 57ed22a943c1a57ceb43e55b76776fcbdcca4572..f73f6bb02335d17cf527ef77340aab3d4e8ded3a 100644 --- a/assets/glb_files/kenny/track_pieces/fenceStraight.glb.import +++ b/assets/glb_files/kenny/track_pieces/fenceStraight.glb.import @@ -25,5 +25,8 @@ meshes/lightmap_texel_size=0.2 skins/use_named_skins=true animation/import=true animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true import_script/path="" _subresources={} +gltf/embedded_image_handling=1 diff --git a/assets/glb_files/kenny/track_pieces/fenceStraight_net.png b/assets/glb_files/kenny/track_pieces/fenceStraight_net.png new file mode 100644 index 0000000000000000000000000000000000000000..1ad349854e5161c6d8ef5b080f12eee0c22a3550 --- /dev/null +++ b/assets/glb_files/kenny/track_pieces/fenceStraight_net.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:48e7d550a2f282179c76baf3eeb35d2d5314b1f0edabab078a2584b1817ee129 +size 1089 diff --git a/assets/glb_files/kenny/track_pieces/fenceStraight_net.png.import b/assets/glb_files/kenny/track_pieces/fenceStraight_net.png.import new file mode 100644 index 0000000000000000000000000000000000000000..271416b672f113e96f2908a984366eccea66fee2 --- /dev/null +++ b/assets/glb_files/kenny/track_pieces/fenceStraight_net.png.import @@ -0,0 +1,36 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b32ox0kqh3cwe" +path.s3tc="res://.godot/imported/fenceStraight_net.png-335475b14eaf8dff40fc6ccfff54246e.s3tc.ctex" +metadata={ +"imported_formats": ["s3tc_bptc"], +"vram_texture": true +} +generator_parameters={} + +[deps] + +source_file="res://assets/glb_files/kenny/track_pieces/fenceStraight_net.png" +dest_files=["res://.godot/imported/fenceStraight_net.png-335475b14eaf8dff40fc6ccfff54246e.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 diff --git a/assets/glb_files/kenny/track_pieces/flagCheckers.glb.import b/assets/glb_files/kenny/track_pieces/flagCheckers.glb.import index f7b65463f86ed3b267f8a0bab98bfd253d9b8526..252137d55fbb8d13a014148c6bc45f07eaee84c6 100644 --- a/assets/glb_files/kenny/track_pieces/flagCheckers.glb.import +++ b/assets/glb_files/kenny/track_pieces/flagCheckers.glb.import @@ -25,5 +25,8 @@ meshes/lightmap_texel_size=0.2 skins/use_named_skins=true animation/import=true animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true import_script/path="" _subresources={} +gltf/embedded_image_handling=1 diff --git a/assets/glb_files/kenny/track_pieces/flagCheckersSmall.glb.import b/assets/glb_files/kenny/track_pieces/flagCheckersSmall.glb.import index 32f1e889aff083e59bec91adc3758833069463e7..8c7ed0909d95638e70d454f7d8216f8b728f2349 100644 --- a/assets/glb_files/kenny/track_pieces/flagCheckersSmall.glb.import +++ b/assets/glb_files/kenny/track_pieces/flagCheckersSmall.glb.import @@ -25,5 +25,8 @@ meshes/lightmap_texel_size=0.2 skins/use_named_skins=true animation/import=true animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true import_script/path="" _subresources={} +gltf/embedded_image_handling=1 diff --git a/assets/glb_files/kenny/track_pieces/flagCheckersSmall_checkers.png b/assets/glb_files/kenny/track_pieces/flagCheckersSmall_checkers.png new file mode 100644 index 0000000000000000000000000000000000000000..7f3a152bf97877d7ab8ce5fcb47e7026328201e1 --- /dev/null +++ b/assets/glb_files/kenny/track_pieces/flagCheckersSmall_checkers.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6146e2458d2724fe0f66640ef606a6009651d4fa9835e4693bd5f48c0911f04b +size 450 diff --git a/assets/glb_files/kenny/track_pieces/flagCheckersSmall_checkers.png.import b/assets/glb_files/kenny/track_pieces/flagCheckersSmall_checkers.png.import new file mode 100644 index 0000000000000000000000000000000000000000..d796adfe722f73cddb2572d9c03ea4bbe707b229 --- /dev/null +++ b/assets/glb_files/kenny/track_pieces/flagCheckersSmall_checkers.png.import @@ -0,0 +1,36 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cjh1tits26uco" +path.s3tc="res://.godot/imported/flagCheckersSmall_checkers.png-cf8574a08cb803e208b4a89dcd7440f7.s3tc.ctex" +metadata={ +"imported_formats": ["s3tc_bptc"], +"vram_texture": true +} +generator_parameters={} + +[deps] + +source_file="res://assets/glb_files/kenny/track_pieces/flagCheckersSmall_checkers.png" +dest_files=["res://.godot/imported/flagCheckersSmall_checkers.png-cf8574a08cb803e208b4a89dcd7440f7.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 diff --git a/assets/glb_files/kenny/track_pieces/flagCheckers_checkers.png b/assets/glb_files/kenny/track_pieces/flagCheckers_checkers.png new file mode 100644 index 0000000000000000000000000000000000000000..7f3a152bf97877d7ab8ce5fcb47e7026328201e1 --- /dev/null +++ b/assets/glb_files/kenny/track_pieces/flagCheckers_checkers.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6146e2458d2724fe0f66640ef606a6009651d4fa9835e4693bd5f48c0911f04b +size 450 diff --git a/assets/glb_files/kenny/track_pieces/flagCheckers_checkers.png.import b/assets/glb_files/kenny/track_pieces/flagCheckers_checkers.png.import new file mode 100644 index 0000000000000000000000000000000000000000..5d5b8c440044827126aaeb75c2ef323f8de9be5d --- /dev/null +++ b/assets/glb_files/kenny/track_pieces/flagCheckers_checkers.png.import @@ -0,0 +1,36 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cdiymis68e2m8" +path.s3tc="res://.godot/imported/flagCheckers_checkers.png-ce16e606a6eb5979b1e0acceeb9939f0.s3tc.ctex" +metadata={ +"imported_formats": ["s3tc_bptc"], +"vram_texture": true +} +generator_parameters={} + +[deps] + +source_file="res://assets/glb_files/kenny/track_pieces/flagCheckers_checkers.png" +dest_files=["res://.godot/imported/flagCheckers_checkers.png-ce16e606a6eb5979b1e0acceeb9939f0.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 diff --git a/assets/glb_files/kenny/track_pieces/flagGreen.glb.import b/assets/glb_files/kenny/track_pieces/flagGreen.glb.import index 46d0055ef6c5a08b5b05150d106c09cf54cbaa1b..77ce8e3ea34588c3e2e3ec3f696054a362eff31e 100644 --- a/assets/glb_files/kenny/track_pieces/flagGreen.glb.import +++ b/assets/glb_files/kenny/track_pieces/flagGreen.glb.import @@ -25,5 +25,8 @@ meshes/lightmap_texel_size=0.2 skins/use_named_skins=true animation/import=true animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true import_script/path="" _subresources={} +gltf/embedded_image_handling=1 diff --git a/assets/glb_files/kenny/track_pieces/flagRed.glb.import b/assets/glb_files/kenny/track_pieces/flagRed.glb.import index 5959937130b7196e06efbe32cf0a1f4cfd027ffd..5add7b01f1b0b89e5f3f65dd186db91c4769a4cc 100644 --- a/assets/glb_files/kenny/track_pieces/flagRed.glb.import +++ b/assets/glb_files/kenny/track_pieces/flagRed.glb.import @@ -25,5 +25,8 @@ meshes/lightmap_texel_size=0.2 skins/use_named_skins=true animation/import=true animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true import_script/path="" _subresources={} +gltf/embedded_image_handling=1 diff --git a/assets/glb_files/kenny/track_pieces/flagTankco.glb.import b/assets/glb_files/kenny/track_pieces/flagTankco.glb.import index 8ee0007c1a28fd2470b78ef07c9c1f0817dd76e8..03175878e03dec831984ff3c2c7f31a05b027bf2 100644 --- a/assets/glb_files/kenny/track_pieces/flagTankco.glb.import +++ b/assets/glb_files/kenny/track_pieces/flagTankco.glb.import @@ -25,5 +25,8 @@ meshes/lightmap_texel_size=0.2 skins/use_named_skins=true animation/import=true animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true import_script/path="" _subresources={} +gltf/embedded_image_handling=1 diff --git a/assets/glb_files/kenny/track_pieces/flagTankco_tankcoBanner.png b/assets/glb_files/kenny/track_pieces/flagTankco_tankcoBanner.png new file mode 100644 index 0000000000000000000000000000000000000000..db2b9d0b4f255316c4f1be22141ea8153e895c5e --- /dev/null +++ b/assets/glb_files/kenny/track_pieces/flagTankco_tankcoBanner.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:62f0bb615c4ccd67ef9828ea2e7f3b669a3baabd84b70fce6f79ad5b61fb5caf +size 3976 diff --git a/assets/glb_files/kenny/track_pieces/flagTankco_tankcoBanner.png.import b/assets/glb_files/kenny/track_pieces/flagTankco_tankcoBanner.png.import new file mode 100644 index 0000000000000000000000000000000000000000..6097474a77eb2db871b8f9b9f74f2e8fef54849f --- /dev/null +++ b/assets/glb_files/kenny/track_pieces/flagTankco_tankcoBanner.png.import @@ -0,0 +1,36 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b3kfvkl4sf7qk" +path.s3tc="res://.godot/imported/flagTankco_tankcoBanner.png-41575f92e85b5fd9c788e46939063e0a.s3tc.ctex" +metadata={ +"imported_formats": ["s3tc_bptc"], +"vram_texture": true +} +generator_parameters={} + +[deps] + +source_file="res://assets/glb_files/kenny/track_pieces/flagTankco_tankcoBanner.png" +dest_files=["res://.godot/imported/flagTankco_tankcoBanner.png-41575f92e85b5fd9c788e46939063e0a.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 diff --git a/assets/glb_files/kenny/track_pieces/grandStand.glb.import b/assets/glb_files/kenny/track_pieces/grandStand.glb.import index 61fb7ce3c7c01fcc23a8a9d54d4a1ff81e7ec54f..1c0b8d37488d325d3bcfbd543dcc4a260a958f69 100644 --- a/assets/glb_files/kenny/track_pieces/grandStand.glb.import +++ b/assets/glb_files/kenny/track_pieces/grandStand.glb.import @@ -25,5 +25,8 @@ meshes/lightmap_texel_size=0.2 skins/use_named_skins=true animation/import=true animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true import_script/path="" _subresources={} +gltf/embedded_image_handling=1 diff --git a/assets/glb_files/kenny/track_pieces/grandStandAwning.glb.import b/assets/glb_files/kenny/track_pieces/grandStandAwning.glb.import index 19c5b4e419e6e4fecfd0cea43b218ba6ff92642f..343b985900ac641a66668be35f14be68dce6339e 100644 --- a/assets/glb_files/kenny/track_pieces/grandStandAwning.glb.import +++ b/assets/glb_files/kenny/track_pieces/grandStandAwning.glb.import @@ -25,5 +25,8 @@ meshes/lightmap_texel_size=0.2 skins/use_named_skins=true animation/import=true animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true import_script/path="" _subresources={} +gltf/embedded_image_handling=1 diff --git a/assets/glb_files/kenny/track_pieces/grandStandCovered.glb.import b/assets/glb_files/kenny/track_pieces/grandStandCovered.glb.import index 76d9206b456193dc5f43e86be89e922c07a6582c..3a61a43f67b36ec95ff2b25b34a8b6262a9515b1 100644 --- a/assets/glb_files/kenny/track_pieces/grandStandCovered.glb.import +++ b/assets/glb_files/kenny/track_pieces/grandStandCovered.glb.import @@ -25,5 +25,8 @@ meshes/lightmap_texel_size=0.2 skins/use_named_skins=true animation/import=true animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true import_script/path="" _subresources={} +gltf/embedded_image_handling=1 diff --git a/assets/glb_files/kenny/track_pieces/grandStandCoveredRound.glb.import b/assets/glb_files/kenny/track_pieces/grandStandCoveredRound.glb.import index 3d41ed924ba64eb4ddb254777f6be109aa1850b9..6ce4c5addbfa29e3a1564e41c323f9ba56b94ffc 100644 --- a/assets/glb_files/kenny/track_pieces/grandStandCoveredRound.glb.import +++ b/assets/glb_files/kenny/track_pieces/grandStandCoveredRound.glb.import @@ -25,5 +25,8 @@ meshes/lightmap_texel_size=0.2 skins/use_named_skins=true animation/import=true animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true import_script/path="" _subresources={} +gltf/embedded_image_handling=1 diff --git a/assets/glb_files/kenny/track_pieces/grandStandRound.glb.import b/assets/glb_files/kenny/track_pieces/grandStandRound.glb.import index 110f2a27137a336a8ca7d9573bb161ac7023ad39..1e0281e844e8bfe7b625f365e092d8d3acbf36c9 100644 --- a/assets/glb_files/kenny/track_pieces/grandStandRound.glb.import +++ b/assets/glb_files/kenny/track_pieces/grandStandRound.glb.import @@ -25,5 +25,8 @@ meshes/lightmap_texel_size=0.2 skins/use_named_skins=true animation/import=true animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true import_script/path="" _subresources={} +gltf/embedded_image_handling=1 diff --git a/assets/glb_files/kenny/track_pieces/grass.glb.import b/assets/glb_files/kenny/track_pieces/grass.glb.import index 4d5e2587b72a45b977c011674b72df9afb2da89e..97b033d641daf3a8b57bc95b3e0d24673f230e55 100644 --- a/assets/glb_files/kenny/track_pieces/grass.glb.import +++ b/assets/glb_files/kenny/track_pieces/grass.glb.import @@ -25,5 +25,8 @@ meshes/lightmap_texel_size=0.2 skins/use_named_skins=true animation/import=true animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true import_script/path="" _subresources={} +gltf/embedded_image_handling=1 diff --git a/assets/glb_files/kenny/track_pieces/lightColored.glb.import b/assets/glb_files/kenny/track_pieces/lightColored.glb.import index 83c416285db05e2bff7f3c696e72a45fdd16d22b..9bd9fd2157049d4bb1ce978b5bef91393b155259 100644 --- a/assets/glb_files/kenny/track_pieces/lightColored.glb.import +++ b/assets/glb_files/kenny/track_pieces/lightColored.glb.import @@ -25,5 +25,8 @@ meshes/lightmap_texel_size=0.2 skins/use_named_skins=true animation/import=true animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true import_script/path="" _subresources={} +gltf/embedded_image_handling=1 diff --git a/assets/glb_files/kenny/track_pieces/lightPostLarge.glb.import b/assets/glb_files/kenny/track_pieces/lightPostLarge.glb.import index 6beb99be0362c085a9e12f0bacbe540169213d49..302ce12f3ef1cfcb6cbd6ead9eb6ac1a72968bdc 100644 --- a/assets/glb_files/kenny/track_pieces/lightPostLarge.glb.import +++ b/assets/glb_files/kenny/track_pieces/lightPostLarge.glb.import @@ -25,5 +25,8 @@ meshes/lightmap_texel_size=0.2 skins/use_named_skins=true animation/import=true animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true import_script/path="" _subresources={} +gltf/embedded_image_handling=1 diff --git a/assets/glb_files/kenny/track_pieces/lightPostModern.glb.import b/assets/glb_files/kenny/track_pieces/lightPostModern.glb.import index 891785f6e595c04902641eda11ca8c63141c8ec8..92738561f78f137f61b6bd4f625eaaec65c5c5a8 100644 --- a/assets/glb_files/kenny/track_pieces/lightPostModern.glb.import +++ b/assets/glb_files/kenny/track_pieces/lightPostModern.glb.import @@ -25,5 +25,8 @@ meshes/lightmap_texel_size=0.2 skins/use_named_skins=true animation/import=true animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true import_script/path="" _subresources={} +gltf/embedded_image_handling=1 diff --git a/assets/glb_files/kenny/track_pieces/lightPost_exclusive.glb.import b/assets/glb_files/kenny/track_pieces/lightPost_exclusive.glb.import index 8223933be8a47a2338ddfddefb26f69a6b8970fb..3b12b5b9f50c17f58c8c3db04206617690a23d69 100644 --- a/assets/glb_files/kenny/track_pieces/lightPost_exclusive.glb.import +++ b/assets/glb_files/kenny/track_pieces/lightPost_exclusive.glb.import @@ -25,5 +25,8 @@ meshes/lightmap_texel_size=0.2 skins/use_named_skins=true animation/import=true animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true import_script/path="" _subresources={} +gltf/embedded_image_handling=1 diff --git a/assets/glb_files/kenny/track_pieces/lightRed.glb.import b/assets/glb_files/kenny/track_pieces/lightRed.glb.import index ca3a3ec1460163f2f4e051f79b316822b1bd2279..88a644101d43df17a94f23ed85f5ccf3141f9de9 100644 --- a/assets/glb_files/kenny/track_pieces/lightRed.glb.import +++ b/assets/glb_files/kenny/track_pieces/lightRed.glb.import @@ -25,5 +25,8 @@ meshes/lightmap_texel_size=0.2 skins/use_named_skins=true animation/import=true animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true import_script/path="" _subresources={} +gltf/embedded_image_handling=1 diff --git a/assets/glb_files/kenny/track_pieces/lightRedDouble.glb.import b/assets/glb_files/kenny/track_pieces/lightRedDouble.glb.import index c14aa79a096b1a7fd4db66dc0022b9bdc32738c7..9d22caaad41c576d4ddeb3441f16e1526b88ff14 100644 --- a/assets/glb_files/kenny/track_pieces/lightRedDouble.glb.import +++ b/assets/glb_files/kenny/track_pieces/lightRedDouble.glb.import @@ -25,5 +25,8 @@ meshes/lightmap_texel_size=0.2 skins/use_named_skins=true animation/import=true animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true import_script/path="" _subresources={} +gltf/embedded_image_handling=1 diff --git a/assets/glb_files/kenny/track_pieces/overhead.glb.import b/assets/glb_files/kenny/track_pieces/overhead.glb.import index 4d41d002299c5523b61e87dd2a6aaf65d50dc10a..e2c448d84b6fc5cbdad61721a373c417827a3eb7 100644 --- a/assets/glb_files/kenny/track_pieces/overhead.glb.import +++ b/assets/glb_files/kenny/track_pieces/overhead.glb.import @@ -25,5 +25,8 @@ meshes/lightmap_texel_size=0.2 skins/use_named_skins=true animation/import=true animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true import_script/path="" _subresources={} +gltf/embedded_image_handling=1 diff --git a/assets/glb_files/kenny/track_pieces/overheadLights.glb.import b/assets/glb_files/kenny/track_pieces/overheadLights.glb.import index 901827b1a0f24891358c8ca89c7a2e98d1faabaf..4fc26cdf8500ff0d1015b6193f85fbc366a923d9 100644 --- a/assets/glb_files/kenny/track_pieces/overheadLights.glb.import +++ b/assets/glb_files/kenny/track_pieces/overheadLights.glb.import @@ -25,5 +25,8 @@ meshes/lightmap_texel_size=0.2 skins/use_named_skins=true animation/import=true animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true import_script/path="" _subresources={} +gltf/embedded_image_handling=1 diff --git a/assets/glb_files/kenny/track_pieces/overheadRound.glb.import b/assets/glb_files/kenny/track_pieces/overheadRound.glb.import index c08d3f3613df1574cfabf5a3e6537041cbef6631..0cb8363ec2ad7a6ece3c0ff701c3cb4c3a927971 100644 --- a/assets/glb_files/kenny/track_pieces/overheadRound.glb.import +++ b/assets/glb_files/kenny/track_pieces/overheadRound.glb.import @@ -25,5 +25,8 @@ meshes/lightmap_texel_size=0.2 skins/use_named_skins=true animation/import=true animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true import_script/path="" _subresources={} +gltf/embedded_image_handling=1 diff --git a/assets/glb_files/kenny/track_pieces/overheadRoundColored.glb.import b/assets/glb_files/kenny/track_pieces/overheadRoundColored.glb.import index aeb23abb1a9a595c7c1bfc07c4a01dc537676c23..90514b0f5969cc8d03cafdb91e7b89f2cb134a2f 100644 --- a/assets/glb_files/kenny/track_pieces/overheadRoundColored.glb.import +++ b/assets/glb_files/kenny/track_pieces/overheadRoundColored.glb.import @@ -25,5 +25,8 @@ meshes/lightmap_texel_size=0.2 skins/use_named_skins=true animation/import=true animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true import_script/path="" _subresources={} +gltf/embedded_image_handling=1 diff --git a/assets/glb_files/kenny/track_pieces/pitsGarage.glb.import b/assets/glb_files/kenny/track_pieces/pitsGarage.glb.import index 8037f4502507cf04b63e2673c034a90d2315690c..64cf053769e89924285713c0e7ef290dcba962e6 100644 --- a/assets/glb_files/kenny/track_pieces/pitsGarage.glb.import +++ b/assets/glb_files/kenny/track_pieces/pitsGarage.glb.import @@ -25,5 +25,8 @@ meshes/lightmap_texel_size=0.2 skins/use_named_skins=true animation/import=true animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true import_script/path="" _subresources={} +gltf/embedded_image_handling=1 diff --git a/assets/glb_files/kenny/track_pieces/pitsGarageClosed.glb.import b/assets/glb_files/kenny/track_pieces/pitsGarageClosed.glb.import index bceb0b68a372b52a7707c819394a24b43e5bd4cb..422cde9db39d7d7a510c57f434a68f08f2371eb7 100644 --- a/assets/glb_files/kenny/track_pieces/pitsGarageClosed.glb.import +++ b/assets/glb_files/kenny/track_pieces/pitsGarageClosed.glb.import @@ -25,5 +25,8 @@ meshes/lightmap_texel_size=0.2 skins/use_named_skins=true animation/import=true animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true import_script/path="" _subresources={} +gltf/embedded_image_handling=1 diff --git a/assets/glb_files/kenny/track_pieces/pitsGarageClosed_tankcoBanner.png b/assets/glb_files/kenny/track_pieces/pitsGarageClosed_tankcoBanner.png new file mode 100644 index 0000000000000000000000000000000000000000..db2b9d0b4f255316c4f1be22141ea8153e895c5e --- /dev/null +++ b/assets/glb_files/kenny/track_pieces/pitsGarageClosed_tankcoBanner.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:62f0bb615c4ccd67ef9828ea2e7f3b669a3baabd84b70fce6f79ad5b61fb5caf +size 3976 diff --git a/assets/glb_files/kenny/track_pieces/pitsGarageClosed_tankcoBanner.png.import b/assets/glb_files/kenny/track_pieces/pitsGarageClosed_tankcoBanner.png.import new file mode 100644 index 0000000000000000000000000000000000000000..651b68522caf14dc4c4f04b2f9b774a9ac708f09 --- /dev/null +++ b/assets/glb_files/kenny/track_pieces/pitsGarageClosed_tankcoBanner.png.import @@ -0,0 +1,36 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bjr1fu20iyc5o" +path.s3tc="res://.godot/imported/pitsGarageClosed_tankcoBanner.png-a9b1c348e5bdc0bb424489f9ad8531de.s3tc.ctex" +metadata={ +"imported_formats": ["s3tc_bptc"], +"vram_texture": true +} +generator_parameters={} + +[deps] + +source_file="res://assets/glb_files/kenny/track_pieces/pitsGarageClosed_tankcoBanner.png" +dest_files=["res://.godot/imported/pitsGarageClosed_tankcoBanner.png-a9b1c348e5bdc0bb424489f9ad8531de.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 diff --git a/assets/glb_files/kenny/track_pieces/pitsGarageCorner.glb.import b/assets/glb_files/kenny/track_pieces/pitsGarageCorner.glb.import index d4e99075bde8614672377cae518213bb93065bb1..a7844fc9dc1774dfba096e6fcb67f0ffffed6dea 100644 --- a/assets/glb_files/kenny/track_pieces/pitsGarageCorner.glb.import +++ b/assets/glb_files/kenny/track_pieces/pitsGarageCorner.glb.import @@ -25,5 +25,8 @@ meshes/lightmap_texel_size=0.2 skins/use_named_skins=true animation/import=true animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true import_script/path="" _subresources={} +gltf/embedded_image_handling=1 diff --git a/assets/glb_files/kenny/track_pieces/pitsGarage_tankcoBanner.png b/assets/glb_files/kenny/track_pieces/pitsGarage_tankcoBanner.png new file mode 100644 index 0000000000000000000000000000000000000000..db2b9d0b4f255316c4f1be22141ea8153e895c5e --- /dev/null +++ b/assets/glb_files/kenny/track_pieces/pitsGarage_tankcoBanner.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:62f0bb615c4ccd67ef9828ea2e7f3b669a3baabd84b70fce6f79ad5b61fb5caf +size 3976 diff --git a/assets/glb_files/kenny/track_pieces/pitsGarage_tankcoBanner.png.import b/assets/glb_files/kenny/track_pieces/pitsGarage_tankcoBanner.png.import new file mode 100644 index 0000000000000000000000000000000000000000..53079cc03ea4fdcc05a992f0732a612faee1cfd6 --- /dev/null +++ b/assets/glb_files/kenny/track_pieces/pitsGarage_tankcoBanner.png.import @@ -0,0 +1,36 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bf7sh5xx0l05q" +path.s3tc="res://.godot/imported/pitsGarage_tankcoBanner.png-e362a8ba7a33b9cf6c8991067cf51256.s3tc.ctex" +metadata={ +"imported_formats": ["s3tc_bptc"], +"vram_texture": true +} +generator_parameters={} + +[deps] + +source_file="res://assets/glb_files/kenny/track_pieces/pitsGarage_tankcoBanner.png" +dest_files=["res://.godot/imported/pitsGarage_tankcoBanner.png-e362a8ba7a33b9cf6c8991067cf51256.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 diff --git a/assets/glb_files/kenny/track_pieces/pitsOffice.glb.import b/assets/glb_files/kenny/track_pieces/pitsOffice.glb.import index d75aef7b53c3f9dbbf5932766e7332cafa018f1a..8b1a29b78240c92411cca0a858a3c64a3135b5b4 100644 --- a/assets/glb_files/kenny/track_pieces/pitsOffice.glb.import +++ b/assets/glb_files/kenny/track_pieces/pitsOffice.glb.import @@ -25,5 +25,8 @@ meshes/lightmap_texel_size=0.2 skins/use_named_skins=true animation/import=true animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true import_script/path="" _subresources={} +gltf/embedded_image_handling=1 diff --git a/assets/glb_files/kenny/track_pieces/pitsOfficeCorner.glb.import b/assets/glb_files/kenny/track_pieces/pitsOfficeCorner.glb.import index 65505a625b88bfd9c6d5ceef26f4c228679b0958..ea9912698620dcb9e531633bd4e8a15ea9c718bb 100644 --- a/assets/glb_files/kenny/track_pieces/pitsOfficeCorner.glb.import +++ b/assets/glb_files/kenny/track_pieces/pitsOfficeCorner.glb.import @@ -25,5 +25,8 @@ meshes/lightmap_texel_size=0.2 skins/use_named_skins=true animation/import=true animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true import_script/path="" _subresources={} +gltf/embedded_image_handling=1 diff --git a/assets/glb_files/kenny/track_pieces/pitsOfficeRoof.glb.import b/assets/glb_files/kenny/track_pieces/pitsOfficeRoof.glb.import index 36ead3cbc969d89f5c6a3b04e5a7211f33111c9e..f486b9c215eef5ee088cb004bf5c4eb454d64dd3 100644 --- a/assets/glb_files/kenny/track_pieces/pitsOfficeRoof.glb.import +++ b/assets/glb_files/kenny/track_pieces/pitsOfficeRoof.glb.import @@ -25,5 +25,8 @@ meshes/lightmap_texel_size=0.2 skins/use_named_skins=true animation/import=true animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true import_script/path="" _subresources={} +gltf/embedded_image_handling=1 diff --git a/assets/glb_files/kenny/track_pieces/pylon.glb.import b/assets/glb_files/kenny/track_pieces/pylon.glb.import index 36fa39fd868a4b2c094c20f5fbe9ae992371b921..c66c822163a891541dc730c466ff776021b9c1f7 100644 --- a/assets/glb_files/kenny/track_pieces/pylon.glb.import +++ b/assets/glb_files/kenny/track_pieces/pylon.glb.import @@ -25,5 +25,8 @@ meshes/lightmap_texel_size=0.2 skins/use_named_skins=true animation/import=true animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true import_script/path="" _subresources={} +gltf/embedded_image_handling=1 diff --git a/assets/glb_files/kenny/track_pieces/raceCarGreen.glb.import b/assets/glb_files/kenny/track_pieces/raceCarGreen.glb.import index 02b8a9807bf3d605a8b947fe577bc65473c75275..19f8dc023e21eefec64698bf9c846c11229f9f70 100644 --- a/assets/glb_files/kenny/track_pieces/raceCarGreen.glb.import +++ b/assets/glb_files/kenny/track_pieces/raceCarGreen.glb.import @@ -25,5 +25,8 @@ meshes/lightmap_texel_size=0.2 skins/use_named_skins=true animation/import=true animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true import_script/path="" _subresources={} +gltf/embedded_image_handling=1 diff --git a/assets/glb_files/kenny/track_pieces/raceCarOrange.glb.import b/assets/glb_files/kenny/track_pieces/raceCarOrange.glb.import index 6455fa16c43d412e4818139dca869b7a1d404623..329a2f3de36980ef80e5a944988854f27751e02d 100644 --- a/assets/glb_files/kenny/track_pieces/raceCarOrange.glb.import +++ b/assets/glb_files/kenny/track_pieces/raceCarOrange.glb.import @@ -25,5 +25,8 @@ meshes/lightmap_texel_size=0.2 skins/use_named_skins=true animation/import=true animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true import_script/path="" _subresources={} +gltf/embedded_image_handling=1 diff --git a/assets/glb_files/kenny/track_pieces/raceCarRed.glb.import b/assets/glb_files/kenny/track_pieces/raceCarRed.glb.import index cab47346156acf5eaabda1a4c7c6f18def1d5a05..fdc6a0b3717b5ec2c095fad4f54b7663f2e22179 100644 --- a/assets/glb_files/kenny/track_pieces/raceCarRed.glb.import +++ b/assets/glb_files/kenny/track_pieces/raceCarRed.glb.import @@ -25,5 +25,8 @@ meshes/lightmap_texel_size=0.2 skins/use_named_skins=true animation/import=true animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true import_script/path="" _subresources={} +gltf/embedded_image_handling=1 diff --git a/assets/glb_files/kenny/track_pieces/raceCarWhite.glb.import b/assets/glb_files/kenny/track_pieces/raceCarWhite.glb.import index 50d01e8fc83503120b2c9af4bf82e966516e0e92..6364fe4e0a939abc4b27fd6ce3d6a065f3d18b41 100644 --- a/assets/glb_files/kenny/track_pieces/raceCarWhite.glb.import +++ b/assets/glb_files/kenny/track_pieces/raceCarWhite.glb.import @@ -25,5 +25,8 @@ meshes/lightmap_texel_size=0.2 skins/use_named_skins=true animation/import=true animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true import_script/path="" _subresources={} +gltf/embedded_image_handling=1 diff --git a/assets/glb_files/kenny/track_pieces/radarEquipment.glb.import b/assets/glb_files/kenny/track_pieces/radarEquipment.glb.import index c2d7f237e4b74eff412b407f6956cc9ad3cb0db8..caa17178d1c6e652d58aa7ea7ee2a1fa881f1321 100644 --- a/assets/glb_files/kenny/track_pieces/radarEquipment.glb.import +++ b/assets/glb_files/kenny/track_pieces/radarEquipment.glb.import @@ -25,5 +25,8 @@ meshes/lightmap_texel_size=0.2 skins/use_named_skins=true animation/import=true animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true import_script/path="" _subresources={} +gltf/embedded_image_handling=1 diff --git a/assets/glb_files/kenny/track_pieces/rail.glb.import b/assets/glb_files/kenny/track_pieces/rail.glb.import index 4d4101c4ae2124b8c45bffceb83cbbab15e84816..d239bb730fea6b67bb5ea656285849eb6aeee7e5 100644 --- a/assets/glb_files/kenny/track_pieces/rail.glb.import +++ b/assets/glb_files/kenny/track_pieces/rail.glb.import @@ -25,5 +25,8 @@ meshes/lightmap_texel_size=0.2 skins/use_named_skins=true animation/import=true animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true import_script/path="" _subresources={} +gltf/embedded_image_handling=1 diff --git a/assets/glb_files/kenny/track_pieces/railDouble.glb.import b/assets/glb_files/kenny/track_pieces/railDouble.glb.import index c6a3da5d059fbb7177b45f6adb8eded7269a41b6..30caab06450e4bd60d9052cddcfcc0d11f163d20 100644 --- a/assets/glb_files/kenny/track_pieces/railDouble.glb.import +++ b/assets/glb_files/kenny/track_pieces/railDouble.glb.import @@ -25,5 +25,8 @@ meshes/lightmap_texel_size=0.2 skins/use_named_skins=true animation/import=true animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true import_script/path="" _subresources={} +gltf/embedded_image_handling=1 diff --git a/assets/glb_files/kenny/track_pieces/ramp.glb.import b/assets/glb_files/kenny/track_pieces/ramp.glb.import index 52b9e19e7a161fbcec7162329119d14a77934d5e..9a09b8ccb15a22241cf04d6f5fc96290d0dbebc8 100644 --- a/assets/glb_files/kenny/track_pieces/ramp.glb.import +++ b/assets/glb_files/kenny/track_pieces/ramp.glb.import @@ -25,5 +25,8 @@ meshes/lightmap_texel_size=0.2 skins/use_named_skins=true animation/import=true animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true import_script/path="" _subresources={} +gltf/embedded_image_handling=1 diff --git a/assets/glb_files/kenny/track_pieces/roadBump.glb.import b/assets/glb_files/kenny/track_pieces/roadBump.glb.import index 53bb4c9a01839d97c5e8d6658667ba3589466f12..cc07429ee2672741d752e200d06650a09f5b3d69 100644 --- a/assets/glb_files/kenny/track_pieces/roadBump.glb.import +++ b/assets/glb_files/kenny/track_pieces/roadBump.glb.import @@ -25,5 +25,8 @@ meshes/lightmap_texel_size=0.2 skins/use_named_skins=true animation/import=true animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true import_script/path="" _subresources={} +gltf/embedded_image_handling=1 diff --git a/assets/glb_files/kenny/track_pieces/roadCornerBridgeLarge.glb.import b/assets/glb_files/kenny/track_pieces/roadCornerBridgeLarge.glb.import index 941afd3f8cf54da5212040393c314e631d4e7c76..cd3ad6cdc667de9c94bf59bfef7be49e8eb62281 100644 --- a/assets/glb_files/kenny/track_pieces/roadCornerBridgeLarge.glb.import +++ b/assets/glb_files/kenny/track_pieces/roadCornerBridgeLarge.glb.import @@ -25,5 +25,8 @@ meshes/lightmap_texel_size=0.2 skins/use_named_skins=true animation/import=true animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true import_script/path="" _subresources={} +gltf/embedded_image_handling=1 diff --git a/assets/glb_files/kenny/track_pieces/roadCornerBridgeLarger.glb.import b/assets/glb_files/kenny/track_pieces/roadCornerBridgeLarger.glb.import index d311acf180d2bc9631dab1857420dc34d3a2ee10..064c278b258a88021ec28e43e1355905ee6dca5f 100644 --- a/assets/glb_files/kenny/track_pieces/roadCornerBridgeLarger.glb.import +++ b/assets/glb_files/kenny/track_pieces/roadCornerBridgeLarger.glb.import @@ -25,5 +25,8 @@ meshes/lightmap_texel_size=0.2 skins/use_named_skins=true animation/import=true animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true import_script/path="" _subresources={} +gltf/embedded_image_handling=1 diff --git a/assets/glb_files/kenny/track_pieces/roadCornerBridgeSmall.glb.import b/assets/glb_files/kenny/track_pieces/roadCornerBridgeSmall.glb.import index 33ba351b7f7c7cdf18bba063721724618b3ea0ee..91e0d03873187b5af532b2cef59af553c877e9cc 100644 --- a/assets/glb_files/kenny/track_pieces/roadCornerBridgeSmall.glb.import +++ b/assets/glb_files/kenny/track_pieces/roadCornerBridgeSmall.glb.import @@ -25,5 +25,8 @@ meshes/lightmap_texel_size=0.2 skins/use_named_skins=true animation/import=true animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true import_script/path="" _subresources={} +gltf/embedded_image_handling=1 diff --git a/assets/glb_files/kenny/track_pieces/roadCornerLarge.glb.import b/assets/glb_files/kenny/track_pieces/roadCornerLarge.glb.import index 540a95e66045757f66818eb4f3f3d00623a0201d..d069480c0687981ca0b1b66183f6250b3863854c 100644 --- a/assets/glb_files/kenny/track_pieces/roadCornerLarge.glb.import +++ b/assets/glb_files/kenny/track_pieces/roadCornerLarge.glb.import @@ -25,5 +25,8 @@ meshes/lightmap_texel_size=0.2 skins/use_named_skins=true animation/import=true animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true import_script/path="" _subresources={} +gltf/embedded_image_handling=1 diff --git a/assets/glb_files/kenny/track_pieces/roadCornerLargeBorder.glb.import b/assets/glb_files/kenny/track_pieces/roadCornerLargeBorder.glb.import index b774de6526546edf5c6902b5276290d4dd5c93bd..aa0ead0d0394f079e7346a24df15510007a08d83 100644 --- a/assets/glb_files/kenny/track_pieces/roadCornerLargeBorder.glb.import +++ b/assets/glb_files/kenny/track_pieces/roadCornerLargeBorder.glb.import @@ -25,5 +25,8 @@ meshes/lightmap_texel_size=0.2 skins/use_named_skins=true animation/import=true animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true import_script/path="" _subresources={} +gltf/embedded_image_handling=1 diff --git a/assets/glb_files/kenny/track_pieces/roadCornerLargeBorderInner.glb.import b/assets/glb_files/kenny/track_pieces/roadCornerLargeBorderInner.glb.import index e7c79866c5107b3a529c365a0a9afb15c9763a1f..ce3a4b2aa2c378e853d8b60e2ee57fc01148c921 100644 --- a/assets/glb_files/kenny/track_pieces/roadCornerLargeBorderInner.glb.import +++ b/assets/glb_files/kenny/track_pieces/roadCornerLargeBorderInner.glb.import @@ -25,5 +25,8 @@ meshes/lightmap_texel_size=0.2 skins/use_named_skins=true animation/import=true animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true import_script/path="" _subresources={} +gltf/embedded_image_handling=1 diff --git a/assets/glb_files/kenny/track_pieces/roadCornerLargeSand.glb.import b/assets/glb_files/kenny/track_pieces/roadCornerLargeSand.glb.import index 0c197ef902ebc719e99d0139a83bac6e5b65553e..4ec9e7d23467f5e599f50f2717442498c734c919 100644 --- a/assets/glb_files/kenny/track_pieces/roadCornerLargeSand.glb.import +++ b/assets/glb_files/kenny/track_pieces/roadCornerLargeSand.glb.import @@ -25,5 +25,8 @@ meshes/lightmap_texel_size=0.2 skins/use_named_skins=true animation/import=true animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true import_script/path="" _subresources={} +gltf/embedded_image_handling=1 diff --git a/assets/glb_files/kenny/track_pieces/roadCornerLargeSandInner.glb.import b/assets/glb_files/kenny/track_pieces/roadCornerLargeSandInner.glb.import index ca2adb68f5475d43c4d6ac98a0f81f1ea8219f2a..2a6f21a44c50f98716f9a3930122c155d5c082f9 100644 --- a/assets/glb_files/kenny/track_pieces/roadCornerLargeSandInner.glb.import +++ b/assets/glb_files/kenny/track_pieces/roadCornerLargeSandInner.glb.import @@ -25,5 +25,8 @@ meshes/lightmap_texel_size=0.2 skins/use_named_skins=true animation/import=true animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true import_script/path="" _subresources={} +gltf/embedded_image_handling=1 diff --git a/assets/glb_files/kenny/track_pieces/roadCornerLargeWall.glb.import b/assets/glb_files/kenny/track_pieces/roadCornerLargeWall.glb.import index c8da3e76c3f3456c8bf3a3c2de7c6e79aeb7c5fc..8dde369bc2c459aa184b37e11d2ba1b1773bad11 100644 --- a/assets/glb_files/kenny/track_pieces/roadCornerLargeWall.glb.import +++ b/assets/glb_files/kenny/track_pieces/roadCornerLargeWall.glb.import @@ -25,5 +25,8 @@ meshes/lightmap_texel_size=0.2 skins/use_named_skins=true animation/import=true animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true import_script/path="" _subresources={} +gltf/embedded_image_handling=1 diff --git a/assets/glb_files/kenny/track_pieces/roadCornerLargeWallInner.glb.import b/assets/glb_files/kenny/track_pieces/roadCornerLargeWallInner.glb.import index 10e9b7a812a93a9f4820cef8af8f6053a5cbfaf2..d1417466cd119610f7ed2a465351ca99d15a94ff 100644 --- a/assets/glb_files/kenny/track_pieces/roadCornerLargeWallInner.glb.import +++ b/assets/glb_files/kenny/track_pieces/roadCornerLargeWallInner.glb.import @@ -25,5 +25,8 @@ meshes/lightmap_texel_size=0.2 skins/use_named_skins=true animation/import=true animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true import_script/path="" _subresources={} +gltf/embedded_image_handling=1 diff --git a/assets/glb_files/kenny/track_pieces/roadCornerLarger.glb.import b/assets/glb_files/kenny/track_pieces/roadCornerLarger.glb.import index 11adff4f950756b1ae83c433d9b06570466e5307..6bd2dfa0cf25c7be590645738f04877dcea42d75 100644 --- a/assets/glb_files/kenny/track_pieces/roadCornerLarger.glb.import +++ b/assets/glb_files/kenny/track_pieces/roadCornerLarger.glb.import @@ -25,5 +25,8 @@ meshes/lightmap_texel_size=0.2 skins/use_named_skins=true animation/import=true animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true import_script/path="" _subresources={} +gltf/embedded_image_handling=1 diff --git a/assets/glb_files/kenny/track_pieces/roadCornerLargerBorder.glb.import b/assets/glb_files/kenny/track_pieces/roadCornerLargerBorder.glb.import index a218b4f2d6e4cd6735b4e0a45908390182b998b4..58159b101572a59af06b9998c949ca0b8ad07962 100644 --- a/assets/glb_files/kenny/track_pieces/roadCornerLargerBorder.glb.import +++ b/assets/glb_files/kenny/track_pieces/roadCornerLargerBorder.glb.import @@ -25,5 +25,8 @@ meshes/lightmap_texel_size=0.2 skins/use_named_skins=true animation/import=true animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true import_script/path="" _subresources={} +gltf/embedded_image_handling=1 diff --git a/assets/glb_files/kenny/track_pieces/roadCornerLargerBorderInner.glb.import b/assets/glb_files/kenny/track_pieces/roadCornerLargerBorderInner.glb.import index f4ae522b639ec90f68f2d201e0646a22c0cd5a8c..0edce367c61cbca6b6aa81e59b5e81936af857c9 100644 --- a/assets/glb_files/kenny/track_pieces/roadCornerLargerBorderInner.glb.import +++ b/assets/glb_files/kenny/track_pieces/roadCornerLargerBorderInner.glb.import @@ -25,5 +25,8 @@ meshes/lightmap_texel_size=0.2 skins/use_named_skins=true animation/import=true animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true import_script/path="" _subresources={} +gltf/embedded_image_handling=1 diff --git a/assets/glb_files/kenny/track_pieces/roadCornerLargerSand.glb.import b/assets/glb_files/kenny/track_pieces/roadCornerLargerSand.glb.import index 8d399f4a32937ae685d7620e9ef5e2b41dbd0290..e86107b9d07fdac5f67857331b4a70243690a629 100644 --- a/assets/glb_files/kenny/track_pieces/roadCornerLargerSand.glb.import +++ b/assets/glb_files/kenny/track_pieces/roadCornerLargerSand.glb.import @@ -25,5 +25,8 @@ meshes/lightmap_texel_size=0.2 skins/use_named_skins=true animation/import=true animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true import_script/path="" _subresources={} +gltf/embedded_image_handling=1 diff --git a/assets/glb_files/kenny/track_pieces/roadCornerLargerSandInner.glb.import b/assets/glb_files/kenny/track_pieces/roadCornerLargerSandInner.glb.import index 1e6dff6c4f0c02ae271e3c2a0bf0b227f07ea3bc..c099e83107f34ac41df816eb82508514bb188fac 100644 --- a/assets/glb_files/kenny/track_pieces/roadCornerLargerSandInner.glb.import +++ b/assets/glb_files/kenny/track_pieces/roadCornerLargerSandInner.glb.import @@ -25,5 +25,8 @@ meshes/lightmap_texel_size=0.2 skins/use_named_skins=true animation/import=true animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true import_script/path="" _subresources={} +gltf/embedded_image_handling=1 diff --git a/assets/glb_files/kenny/track_pieces/roadCornerLargerWall.glb.import b/assets/glb_files/kenny/track_pieces/roadCornerLargerWall.glb.import index d036f3ef6779d3df05d9edfc9c786ece51ac169a..f1ac76f9cf1854e1593d5fb7043f82086c0fb43c 100644 --- a/assets/glb_files/kenny/track_pieces/roadCornerLargerWall.glb.import +++ b/assets/glb_files/kenny/track_pieces/roadCornerLargerWall.glb.import @@ -25,5 +25,8 @@ meshes/lightmap_texel_size=0.2 skins/use_named_skins=true animation/import=true animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true import_script/path="" _subresources={} +gltf/embedded_image_handling=1 diff --git a/assets/glb_files/kenny/track_pieces/roadCornerLargerWallInner.glb.import b/assets/glb_files/kenny/track_pieces/roadCornerLargerWallInner.glb.import index 397e7b7df2ee9604cf24167158a326a80ca54310..7d199ebd8ac3f85537f627e86058c7481fc6e775 100644 --- a/assets/glb_files/kenny/track_pieces/roadCornerLargerWallInner.glb.import +++ b/assets/glb_files/kenny/track_pieces/roadCornerLargerWallInner.glb.import @@ -25,5 +25,8 @@ meshes/lightmap_texel_size=0.2 skins/use_named_skins=true animation/import=true animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true import_script/path="" _subresources={} +gltf/embedded_image_handling=1 diff --git a/assets/glb_files/kenny/track_pieces/roadCornerSmall.glb.import b/assets/glb_files/kenny/track_pieces/roadCornerSmall.glb.import index a8e3ddf1d892941fbac9bb657c200512038fcdd1..0fb212abded21ff6a7cacb99800e1e03bab6c63d 100644 --- a/assets/glb_files/kenny/track_pieces/roadCornerSmall.glb.import +++ b/assets/glb_files/kenny/track_pieces/roadCornerSmall.glb.import @@ -25,5 +25,8 @@ meshes/lightmap_texel_size=0.2 skins/use_named_skins=true animation/import=true animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true import_script/path="" _subresources={} +gltf/embedded_image_handling=1 diff --git a/assets/glb_files/kenny/track_pieces/roadCornerSmallBorder.glb.import b/assets/glb_files/kenny/track_pieces/roadCornerSmallBorder.glb.import index 12fb8f52e269a4b05cf7a360e4b299ef245fdc4d..9238df4caef3e20ee0a99aa4a6a1551014225d36 100644 --- a/assets/glb_files/kenny/track_pieces/roadCornerSmallBorder.glb.import +++ b/assets/glb_files/kenny/track_pieces/roadCornerSmallBorder.glb.import @@ -25,5 +25,8 @@ meshes/lightmap_texel_size=0.2 skins/use_named_skins=true animation/import=true animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true import_script/path="" _subresources={} +gltf/embedded_image_handling=1 diff --git a/assets/glb_files/kenny/track_pieces/roadCornerSmallSand.glb.import b/assets/glb_files/kenny/track_pieces/roadCornerSmallSand.glb.import index 5625425cf158a384d72fbab1e7470f0dac6e7c19..7662480631a1bd407aa26dcdd8bf860e818248ba 100644 --- a/assets/glb_files/kenny/track_pieces/roadCornerSmallSand.glb.import +++ b/assets/glb_files/kenny/track_pieces/roadCornerSmallSand.glb.import @@ -25,5 +25,8 @@ meshes/lightmap_texel_size=0.2 skins/use_named_skins=true animation/import=true animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true import_script/path="" _subresources={} +gltf/embedded_image_handling=1 diff --git a/assets/glb_files/kenny/track_pieces/roadCornerSmallSquare.glb.import b/assets/glb_files/kenny/track_pieces/roadCornerSmallSquare.glb.import index 05de5e9950e87382dd78de72683896ffa7a0f4a5..d29dfddd4a59cb507c2be7a6d03f4b5ff5bd7a9a 100644 --- a/assets/glb_files/kenny/track_pieces/roadCornerSmallSquare.glb.import +++ b/assets/glb_files/kenny/track_pieces/roadCornerSmallSquare.glb.import @@ -25,5 +25,8 @@ meshes/lightmap_texel_size=0.2 skins/use_named_skins=true animation/import=true animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true import_script/path="" _subresources={} +gltf/embedded_image_handling=1 diff --git a/assets/glb_files/kenny/track_pieces/roadCornerSmallWall.glb.import b/assets/glb_files/kenny/track_pieces/roadCornerSmallWall.glb.import index 8a522f71f3a6597d6140fa8eaaed176a125d5c1f..9323cd6e88aae324d7f618b64bdc2146258be04f 100644 --- a/assets/glb_files/kenny/track_pieces/roadCornerSmallWall.glb.import +++ b/assets/glb_files/kenny/track_pieces/roadCornerSmallWall.glb.import @@ -25,5 +25,8 @@ meshes/lightmap_texel_size=0.2 skins/use_named_skins=true animation/import=true animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true import_script/path="" _subresources={} +gltf/embedded_image_handling=1 diff --git a/assets/glb_files/kenny/track_pieces/roadCrossing.glb.import b/assets/glb_files/kenny/track_pieces/roadCrossing.glb.import index 48e531b4be7967db28ec9f8032fbb8dc2239f3d1..b88f6dd2dfc876b0ce53ba607e99fd13c45fcc13 100644 --- a/assets/glb_files/kenny/track_pieces/roadCrossing.glb.import +++ b/assets/glb_files/kenny/track_pieces/roadCrossing.glb.import @@ -25,5 +25,8 @@ meshes/lightmap_texel_size=0.2 skins/use_named_skins=true animation/import=true animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true import_script/path="" _subresources={} +gltf/embedded_image_handling=1 diff --git a/assets/glb_files/kenny/track_pieces/roadCurved.glb.import b/assets/glb_files/kenny/track_pieces/roadCurved.glb.import index 7e5412b6affa7956175641d7654211180c74dcd5..b6cec622242242e1eb9888001c4a477e2d2d2811 100644 --- a/assets/glb_files/kenny/track_pieces/roadCurved.glb.import +++ b/assets/glb_files/kenny/track_pieces/roadCurved.glb.import @@ -25,5 +25,8 @@ meshes/lightmap_texel_size=0.2 skins/use_named_skins=true animation/import=true animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true import_script/path="" _subresources={} +gltf/embedded_image_handling=1 diff --git a/assets/glb_files/kenny/track_pieces/roadCurvedSplit.glb.import b/assets/glb_files/kenny/track_pieces/roadCurvedSplit.glb.import index ef76e075a2d368de81e6e2b3f56a7f602a4da3b4..36eee832f58ae1e33658d0e3676caea5b827d9a4 100644 --- a/assets/glb_files/kenny/track_pieces/roadCurvedSplit.glb.import +++ b/assets/glb_files/kenny/track_pieces/roadCurvedSplit.glb.import @@ -25,5 +25,8 @@ meshes/lightmap_texel_size=0.2 skins/use_named_skins=true animation/import=true animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true import_script/path="" _subresources={} +gltf/embedded_image_handling=1 diff --git a/assets/glb_files/kenny/track_pieces/roadEnd.glb.import b/assets/glb_files/kenny/track_pieces/roadEnd.glb.import index 221ac8140b606dd65cfcba67941d3a873fe50b73..c2c348b6e2764d75fb43518b6f93202c2c3fe72e 100644 --- a/assets/glb_files/kenny/track_pieces/roadEnd.glb.import +++ b/assets/glb_files/kenny/track_pieces/roadEnd.glb.import @@ -25,5 +25,8 @@ meshes/lightmap_texel_size=0.2 skins/use_named_skins=true animation/import=true animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true import_script/path="" _subresources={} +gltf/embedded_image_handling=1 diff --git a/assets/glb_files/kenny/track_pieces/roadPitEntry.glb.import b/assets/glb_files/kenny/track_pieces/roadPitEntry.glb.import index 0eee8aaea86006bbf6fbf8a310bfd4055e0202b8..ee18f592f66093e077c9b85bb88c025ebfe22b23 100644 --- a/assets/glb_files/kenny/track_pieces/roadPitEntry.glb.import +++ b/assets/glb_files/kenny/track_pieces/roadPitEntry.glb.import @@ -25,5 +25,8 @@ meshes/lightmap_texel_size=0.2 skins/use_named_skins=true animation/import=true animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true import_script/path="" _subresources={} +gltf/embedded_image_handling=1 diff --git a/assets/glb_files/kenny/track_pieces/roadPitGarage.glb.import b/assets/glb_files/kenny/track_pieces/roadPitGarage.glb.import index e6cecc1856a447c5beae079a7987494807d910ff..a4c5d56676dd0d850d2ba86c613946e262bdc535 100644 --- a/assets/glb_files/kenny/track_pieces/roadPitGarage.glb.import +++ b/assets/glb_files/kenny/track_pieces/roadPitGarage.glb.import @@ -25,5 +25,8 @@ meshes/lightmap_texel_size=0.2 skins/use_named_skins=true animation/import=true animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true import_script/path="" _subresources={} +gltf/embedded_image_handling=1 diff --git a/assets/glb_files/kenny/track_pieces/roadPitStraight.glb.import b/assets/glb_files/kenny/track_pieces/roadPitStraight.glb.import index 736ad8617f4f28c6eed86f7569797b1ce75684ac..19003157549f0d0ca2cc118909ea67be5c091897 100644 --- a/assets/glb_files/kenny/track_pieces/roadPitStraight.glb.import +++ b/assets/glb_files/kenny/track_pieces/roadPitStraight.glb.import @@ -25,5 +25,8 @@ meshes/lightmap_texel_size=0.2 skins/use_named_skins=true animation/import=true animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true import_script/path="" _subresources={} +gltf/embedded_image_handling=1 diff --git a/assets/glb_files/kenny/track_pieces/roadPitStraightLong.glb.import b/assets/glb_files/kenny/track_pieces/roadPitStraightLong.glb.import index 75e7b26a5e054bd1d021c295a350b7dda1cf1f24..53348fed2271caa7e384812da55d45f915c959c6 100644 --- a/assets/glb_files/kenny/track_pieces/roadPitStraightLong.glb.import +++ b/assets/glb_files/kenny/track_pieces/roadPitStraightLong.glb.import @@ -25,5 +25,8 @@ meshes/lightmap_texel_size=0.2 skins/use_named_skins=true animation/import=true animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true import_script/path="" _subresources={} +gltf/embedded_image_handling=1 diff --git a/assets/glb_files/kenny/track_pieces/roadRamp.glb.import b/assets/glb_files/kenny/track_pieces/roadRamp.glb.import index 4acf771168da505f3461562511f9956309e03235..3f371d7e63b064783e2b4fd7ab3ce686f056169e 100644 --- a/assets/glb_files/kenny/track_pieces/roadRamp.glb.import +++ b/assets/glb_files/kenny/track_pieces/roadRamp.glb.import @@ -25,5 +25,8 @@ meshes/lightmap_texel_size=0.2 skins/use_named_skins=true animation/import=true animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true import_script/path="" _subresources={} +gltf/embedded_image_handling=1 diff --git a/assets/glb_files/kenny/track_pieces/roadRampLong.glb.import b/assets/glb_files/kenny/track_pieces/roadRampLong.glb.import index b991e2e4f851c34875591b7a6236358859ba223b..65e2036fb131ee18de9c1ff637ce8dad6e7ae23a 100644 --- a/assets/glb_files/kenny/track_pieces/roadRampLong.glb.import +++ b/assets/glb_files/kenny/track_pieces/roadRampLong.glb.import @@ -25,5 +25,8 @@ meshes/lightmap_texel_size=0.2 skins/use_named_skins=true animation/import=true animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true import_script/path="" _subresources={} +gltf/embedded_image_handling=1 diff --git a/assets/glb_files/kenny/track_pieces/roadRampLongCurved.glb.import b/assets/glb_files/kenny/track_pieces/roadRampLongCurved.glb.import index 23ab0953e0bc9e1521b2ff786e068e2be5d82946..fda26b1cda34a3029578c1993c3bd5578ea73ace 100644 --- a/assets/glb_files/kenny/track_pieces/roadRampLongCurved.glb.import +++ b/assets/glb_files/kenny/track_pieces/roadRampLongCurved.glb.import @@ -25,5 +25,8 @@ meshes/lightmap_texel_size=0.2 skins/use_named_skins=true animation/import=true animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true import_script/path="" _subresources={} +gltf/embedded_image_handling=1 diff --git a/assets/glb_files/kenny/track_pieces/roadRampLongCurvedWall.glb.import b/assets/glb_files/kenny/track_pieces/roadRampLongCurvedWall.glb.import index 31326faba861628100d43035dda06de5b01fcaf6..1d9f33d0c944bad5b5cb1a175368f42785857c77 100644 --- a/assets/glb_files/kenny/track_pieces/roadRampLongCurvedWall.glb.import +++ b/assets/glb_files/kenny/track_pieces/roadRampLongCurvedWall.glb.import @@ -25,5 +25,8 @@ meshes/lightmap_texel_size=0.2 skins/use_named_skins=true animation/import=true animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true import_script/path="" _subresources={} +gltf/embedded_image_handling=1 diff --git a/assets/glb_files/kenny/track_pieces/roadRampLongWall.glb.import b/assets/glb_files/kenny/track_pieces/roadRampLongWall.glb.import index 1a28596a45c6c735878c1022808b26ad050077ae..a12935fde0b28b209dd8cabd29784c0ad3fab2b3 100644 --- a/assets/glb_files/kenny/track_pieces/roadRampLongWall.glb.import +++ b/assets/glb_files/kenny/track_pieces/roadRampLongWall.glb.import @@ -25,5 +25,8 @@ meshes/lightmap_texel_size=0.2 skins/use_named_skins=true animation/import=true animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true import_script/path="" _subresources={} +gltf/embedded_image_handling=1 diff --git a/assets/glb_files/kenny/track_pieces/roadRampWall.glb.import b/assets/glb_files/kenny/track_pieces/roadRampWall.glb.import index 4abef0d28a14e2b6936c2d8cd753f818749c0519..25099f03aeffe19b0e5563762240030c15ab0af3 100644 --- a/assets/glb_files/kenny/track_pieces/roadRampWall.glb.import +++ b/assets/glb_files/kenny/track_pieces/roadRampWall.glb.import @@ -25,5 +25,8 @@ meshes/lightmap_texel_size=0.2 skins/use_named_skins=true animation/import=true animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true import_script/path="" _subresources={} +gltf/embedded_image_handling=1 diff --git a/assets/glb_files/kenny/track_pieces/roadSide.glb.import b/assets/glb_files/kenny/track_pieces/roadSide.glb.import index e58093050605e27603e1c004f4b5993bc8965709..20ed8aba108e4d1452dc43e46d430ad44a0b1952 100644 --- a/assets/glb_files/kenny/track_pieces/roadSide.glb.import +++ b/assets/glb_files/kenny/track_pieces/roadSide.glb.import @@ -25,5 +25,8 @@ meshes/lightmap_texel_size=0.2 skins/use_named_skins=true animation/import=true animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true import_script/path="" _subresources={} +gltf/embedded_image_handling=1 diff --git a/assets/glb_files/kenny/track_pieces/roadSplit.glb.import b/assets/glb_files/kenny/track_pieces/roadSplit.glb.import index 73812fff0d3957b33df49e4a6522b4d0b1182a8f..aa5cc7f664494e6774b1d8c0e7808d91b769b790 100644 --- a/assets/glb_files/kenny/track_pieces/roadSplit.glb.import +++ b/assets/glb_files/kenny/track_pieces/roadSplit.glb.import @@ -25,5 +25,8 @@ meshes/lightmap_texel_size=0.2 skins/use_named_skins=true animation/import=true animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true import_script/path="" _subresources={} +gltf/embedded_image_handling=1 diff --git a/assets/glb_files/kenny/track_pieces/roadSplitLarge.glb.import b/assets/glb_files/kenny/track_pieces/roadSplitLarge.glb.import index 31f98d9e5913130762d3caa0e1e76f0530fbd950..923c4e7fa5d667a51c788d9e8a0db1e989eb316c 100644 --- a/assets/glb_files/kenny/track_pieces/roadSplitLarge.glb.import +++ b/assets/glb_files/kenny/track_pieces/roadSplitLarge.glb.import @@ -25,5 +25,8 @@ meshes/lightmap_texel_size=0.2 skins/use_named_skins=true animation/import=true animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true import_script/path="" _subresources={} +gltf/embedded_image_handling=1 diff --git a/assets/glb_files/kenny/track_pieces/roadSplitLarger.glb.import b/assets/glb_files/kenny/track_pieces/roadSplitLarger.glb.import index 001af07462762240a987ffede58937b2ca1b2614..e9a47cc000f88f5b636c6aa0f0cf1c7ec87cadcd 100644 --- a/assets/glb_files/kenny/track_pieces/roadSplitLarger.glb.import +++ b/assets/glb_files/kenny/track_pieces/roadSplitLarger.glb.import @@ -25,5 +25,8 @@ meshes/lightmap_texel_size=0.2 skins/use_named_skins=true animation/import=true animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true import_script/path="" _subresources={} +gltf/embedded_image_handling=1 diff --git a/assets/glb_files/kenny/track_pieces/roadSplitRound.glb.import b/assets/glb_files/kenny/track_pieces/roadSplitRound.glb.import index 16ddefa24b2644f80da12c6d91dc560457704ab1..2a68ff2336712add076756c047e2a983bea671d2 100644 --- a/assets/glb_files/kenny/track_pieces/roadSplitRound.glb.import +++ b/assets/glb_files/kenny/track_pieces/roadSplitRound.glb.import @@ -25,5 +25,8 @@ meshes/lightmap_texel_size=0.2 skins/use_named_skins=true animation/import=true animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true import_script/path="" _subresources={} +gltf/embedded_image_handling=1 diff --git a/assets/glb_files/kenny/track_pieces/roadSplitRoundLarge.glb.import b/assets/glb_files/kenny/track_pieces/roadSplitRoundLarge.glb.import index 3d5db192f247b56f4593d387d0e43e1d39177faf..ee5e56ca010819b670e21f05ab3d77076f0b9961 100644 --- a/assets/glb_files/kenny/track_pieces/roadSplitRoundLarge.glb.import +++ b/assets/glb_files/kenny/track_pieces/roadSplitRoundLarge.glb.import @@ -25,5 +25,8 @@ meshes/lightmap_texel_size=0.2 skins/use_named_skins=true animation/import=true animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true import_script/path="" _subresources={} +gltf/embedded_image_handling=1 diff --git a/assets/glb_files/kenny/track_pieces/roadSplitSmall.glb.import b/assets/glb_files/kenny/track_pieces/roadSplitSmall.glb.import index 06782dbbdcd8b4a61c5e5b9b2f9a65256f15cf6f..3c36206f43f16f510a3ed4c79b4c48979d125d4c 100644 --- a/assets/glb_files/kenny/track_pieces/roadSplitSmall.glb.import +++ b/assets/glb_files/kenny/track_pieces/roadSplitSmall.glb.import @@ -25,5 +25,8 @@ meshes/lightmap_texel_size=0.2 skins/use_named_skins=true animation/import=true animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true import_script/path="" _subresources={} +gltf/embedded_image_handling=1 diff --git a/assets/glb_files/kenny/track_pieces/roadStart.glb.import b/assets/glb_files/kenny/track_pieces/roadStart.glb.import index 8ef37cb047c59ed09b92e6ad8b20b80005866e53..807d679dc0509a68af844d915584a77a316c4358 100644 --- a/assets/glb_files/kenny/track_pieces/roadStart.glb.import +++ b/assets/glb_files/kenny/track_pieces/roadStart.glb.import @@ -25,5 +25,8 @@ meshes/lightmap_texel_size=0.2 skins/use_named_skins=true animation/import=true animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true import_script/path="" _subresources={} +gltf/embedded_image_handling=1 diff --git a/assets/glb_files/kenny/track_pieces/roadStartPositions.glb.import b/assets/glb_files/kenny/track_pieces/roadStartPositions.glb.import index 66669ffddc9ed6235dd39943b9b8a21678a88faa..5ad78c7a32620a48c1fa106fbaae0fd05f6bc7b0 100644 --- a/assets/glb_files/kenny/track_pieces/roadStartPositions.glb.import +++ b/assets/glb_files/kenny/track_pieces/roadStartPositions.glb.import @@ -25,5 +25,8 @@ meshes/lightmap_texel_size=0.2 skins/use_named_skins=true animation/import=true animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true import_script/path="" _subresources={} +gltf/embedded_image_handling=1 diff --git a/assets/glb_files/kenny/track_pieces/roadStraight.glb.import b/assets/glb_files/kenny/track_pieces/roadStraight.glb.import index f440db6a655ee7038238c7e178146fc8f54e7cc4..d2bac576a74bfb12e06c4dbd8c86791eb375924d 100644 --- a/assets/glb_files/kenny/track_pieces/roadStraight.glb.import +++ b/assets/glb_files/kenny/track_pieces/roadStraight.glb.import @@ -25,5 +25,8 @@ meshes/lightmap_texel_size=0.2 skins/use_named_skins=true animation/import=true animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true import_script/path="" _subresources={} +gltf/embedded_image_handling=1 diff --git a/assets/glb_files/kenny/track_pieces/roadStraightArrow.glb.import b/assets/glb_files/kenny/track_pieces/roadStraightArrow.glb.import index 9cc6e4ebe01bcaaaa61b86320275ca245f3d1f68..1f38f77914dda2e69989f96ace4170f7ff2a1345 100644 --- a/assets/glb_files/kenny/track_pieces/roadStraightArrow.glb.import +++ b/assets/glb_files/kenny/track_pieces/roadStraightArrow.glb.import @@ -25,5 +25,8 @@ meshes/lightmap_texel_size=0.2 skins/use_named_skins=true animation/import=true animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true import_script/path="" _subresources={} +gltf/embedded_image_handling=1 diff --git a/assets/glb_files/kenny/track_pieces/roadStraightBridge.glb.import b/assets/glb_files/kenny/track_pieces/roadStraightBridge.glb.import index fcdbd59887c76597a735e66e216a7dbd4c01e158..b68505d28e7ff08747b09c4e3ca9cbb53680ab4f 100644 --- a/assets/glb_files/kenny/track_pieces/roadStraightBridge.glb.import +++ b/assets/glb_files/kenny/track_pieces/roadStraightBridge.glb.import @@ -25,5 +25,8 @@ meshes/lightmap_texel_size=0.2 skins/use_named_skins=true animation/import=true animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true import_script/path="" _subresources={} +gltf/embedded_image_handling=1 diff --git a/assets/glb_files/kenny/track_pieces/roadStraightBridgeMid.glb.import b/assets/glb_files/kenny/track_pieces/roadStraightBridgeMid.glb.import index a0a59921dc20644446440d32d7afb1c6c123a981..4d4418190efba42c86f93ab21289b7087bbe160b 100644 --- a/assets/glb_files/kenny/track_pieces/roadStraightBridgeMid.glb.import +++ b/assets/glb_files/kenny/track_pieces/roadStraightBridgeMid.glb.import @@ -25,5 +25,8 @@ meshes/lightmap_texel_size=0.2 skins/use_named_skins=true animation/import=true animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true import_script/path="" _subresources={} +gltf/embedded_image_handling=1 diff --git a/assets/glb_files/kenny/track_pieces/roadStraightBridgeStart.glb.import b/assets/glb_files/kenny/track_pieces/roadStraightBridgeStart.glb.import index d70a74c849846e744d6761f99b59a3796b002ec5..22f96ea754e42e4dc168425c9ce386d2c55ca60d 100644 --- a/assets/glb_files/kenny/track_pieces/roadStraightBridgeStart.glb.import +++ b/assets/glb_files/kenny/track_pieces/roadStraightBridgeStart.glb.import @@ -25,5 +25,8 @@ meshes/lightmap_texel_size=0.2 skins/use_named_skins=true animation/import=true animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true import_script/path="" _subresources={} +gltf/embedded_image_handling=1 diff --git a/assets/glb_files/kenny/track_pieces/roadStraightLong.glb.import b/assets/glb_files/kenny/track_pieces/roadStraightLong.glb.import index ae6658e84c42730358333b3c500bbf9294f0a43b..8b008f6cf1da1f649e4741a8005262cc0b218184 100644 --- a/assets/glb_files/kenny/track_pieces/roadStraightLong.glb.import +++ b/assets/glb_files/kenny/track_pieces/roadStraightLong.glb.import @@ -25,5 +25,8 @@ meshes/lightmap_texel_size=0.2 skins/use_named_skins=true animation/import=true animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true import_script/path="" _subresources={} +gltf/embedded_image_handling=1 diff --git a/assets/glb_files/kenny/track_pieces/roadStraightLongBump.glb.import b/assets/glb_files/kenny/track_pieces/roadStraightLongBump.glb.import index f5d1ce4cb8edf4453e57e5dad47c5c0c7eeaf3ad..33e364a439d7fca55c68b54d9259070eb7897e34 100644 --- a/assets/glb_files/kenny/track_pieces/roadStraightLongBump.glb.import +++ b/assets/glb_files/kenny/track_pieces/roadStraightLongBump.glb.import @@ -25,5 +25,8 @@ meshes/lightmap_texel_size=0.2 skins/use_named_skins=true animation/import=true animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true import_script/path="" _subresources={} +gltf/embedded_image_handling=1 diff --git a/assets/glb_files/kenny/track_pieces/roadStraightLongBumpRound.glb.import b/assets/glb_files/kenny/track_pieces/roadStraightLongBumpRound.glb.import index 0da67cc11f438d242fecc4e24142188a4713b2b0..4aff6f5c9e1b09c4ff36f6b2ed53012e51ede560 100644 --- a/assets/glb_files/kenny/track_pieces/roadStraightLongBumpRound.glb.import +++ b/assets/glb_files/kenny/track_pieces/roadStraightLongBumpRound.glb.import @@ -25,5 +25,8 @@ meshes/lightmap_texel_size=0.2 skins/use_named_skins=true animation/import=true animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true import_script/path="" _subresources={} +gltf/embedded_image_handling=1 diff --git a/assets/glb_files/kenny/track_pieces/roadStraightLongMid.glb.import b/assets/glb_files/kenny/track_pieces/roadStraightLongMid.glb.import index 38806515f1072b6f088bd7971537af672d3eb45e..e1d48216e3430f508a6078d222e55041b5b47d81 100644 --- a/assets/glb_files/kenny/track_pieces/roadStraightLongMid.glb.import +++ b/assets/glb_files/kenny/track_pieces/roadStraightLongMid.glb.import @@ -25,5 +25,8 @@ meshes/lightmap_texel_size=0.2 skins/use_named_skins=true animation/import=true animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true import_script/path="" _subresources={} +gltf/embedded_image_handling=1 diff --git a/assets/glb_files/kenny/track_pieces/roadStraightSkew.glb.import b/assets/glb_files/kenny/track_pieces/roadStraightSkew.glb.import index 99b11abd87aed17342ac1297d01428f3f504d799..63f0b588040f812ccccd1b60d74d58c1b4266935 100644 --- a/assets/glb_files/kenny/track_pieces/roadStraightSkew.glb.import +++ b/assets/glb_files/kenny/track_pieces/roadStraightSkew.glb.import @@ -25,5 +25,8 @@ meshes/lightmap_texel_size=0.2 skins/use_named_skins=true animation/import=true animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true import_script/path="" _subresources={} +gltf/embedded_image_handling=1 diff --git a/assets/glb_files/kenny/track_pieces/tent.glb.import b/assets/glb_files/kenny/track_pieces/tent.glb.import index b6f71b46dbddcce6074aaf5d78a9f681b542e1df..af2143207d7a7e965d40aa2975eeeedeae7dae2c 100644 --- a/assets/glb_files/kenny/track_pieces/tent.glb.import +++ b/assets/glb_files/kenny/track_pieces/tent.glb.import @@ -25,5 +25,8 @@ meshes/lightmap_texel_size=0.2 skins/use_named_skins=true animation/import=true animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true import_script/path="" _subresources={} +gltf/embedded_image_handling=1 diff --git a/assets/glb_files/kenny/track_pieces/tentClosed.glb.import b/assets/glb_files/kenny/track_pieces/tentClosed.glb.import index 200f0ab279369bf5331e81a53d409ec60a019ac2..bcd25b6926e3ca42495f811e34ea9354b394c1ed 100644 --- a/assets/glb_files/kenny/track_pieces/tentClosed.glb.import +++ b/assets/glb_files/kenny/track_pieces/tentClosed.glb.import @@ -25,5 +25,8 @@ meshes/lightmap_texel_size=0.2 skins/use_named_skins=true animation/import=true animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true import_script/path="" _subresources={} +gltf/embedded_image_handling=1 diff --git a/assets/glb_files/kenny/track_pieces/tentClosedLong.glb.import b/assets/glb_files/kenny/track_pieces/tentClosedLong.glb.import index ad2050193ae7bb3d11c5585e50493e473ed14860..397e61c8201ca6f7230de6007daf68cb5a1965f7 100644 --- a/assets/glb_files/kenny/track_pieces/tentClosedLong.glb.import +++ b/assets/glb_files/kenny/track_pieces/tentClosedLong.glb.import @@ -25,5 +25,8 @@ meshes/lightmap_texel_size=0.2 skins/use_named_skins=true animation/import=true animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true import_script/path="" _subresources={} +gltf/embedded_image_handling=1 diff --git a/assets/glb_files/kenny/track_pieces/tentLong.glb.import b/assets/glb_files/kenny/track_pieces/tentLong.glb.import index b2021b93601daf872a4f529c5ff83b061fa5c5d2..50ff4f84a6c9a5d6acb8f1674f12e7d102b4dff7 100644 --- a/assets/glb_files/kenny/track_pieces/tentLong.glb.import +++ b/assets/glb_files/kenny/track_pieces/tentLong.glb.import @@ -25,5 +25,8 @@ meshes/lightmap_texel_size=0.2 skins/use_named_skins=true animation/import=true animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true import_script/path="" _subresources={} +gltf/embedded_image_handling=1 diff --git a/assets/glb_files/kenny/track_pieces/tentRoof.glb.import b/assets/glb_files/kenny/track_pieces/tentRoof.glb.import index ae5d9d47727daf4192468a1e84cc283d2d094e15..e6e5cf5ed83b41d4edfd829c710a5518d0efafa3 100644 --- a/assets/glb_files/kenny/track_pieces/tentRoof.glb.import +++ b/assets/glb_files/kenny/track_pieces/tentRoof.glb.import @@ -25,5 +25,8 @@ meshes/lightmap_texel_size=0.2 skins/use_named_skins=true animation/import=true animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true import_script/path="" _subresources={} +gltf/embedded_image_handling=1 diff --git a/assets/glb_files/kenny/track_pieces/tentRoofDouble.glb.import b/assets/glb_files/kenny/track_pieces/tentRoofDouble.glb.import index 0d7725e9a6f8d7150452e96541fea81f49da0a92..483fe5cb97e84f33cf834a69f3644888f3a31f40 100644 --- a/assets/glb_files/kenny/track_pieces/tentRoofDouble.glb.import +++ b/assets/glb_files/kenny/track_pieces/tentRoofDouble.glb.import @@ -25,5 +25,8 @@ meshes/lightmap_texel_size=0.2 skins/use_named_skins=true animation/import=true animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true import_script/path="" _subresources={} +gltf/embedded_image_handling=1 diff --git a/assets/glb_files/kenny/track_pieces/treeLarge.glb.import b/assets/glb_files/kenny/track_pieces/treeLarge.glb.import index eaf55ef2d43c36b6b5fd34320027a257ecc1cfb7..bab9fb7ca396f7ec1624a6b7ad05d231144c147b 100644 --- a/assets/glb_files/kenny/track_pieces/treeLarge.glb.import +++ b/assets/glb_files/kenny/track_pieces/treeLarge.glb.import @@ -25,5 +25,8 @@ meshes/lightmap_texel_size=0.2 skins/use_named_skins=true animation/import=true animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true import_script/path="" _subresources={} +gltf/embedded_image_handling=1 diff --git a/assets/glb_files/kenny/track_pieces/treeSmall.glb.import b/assets/glb_files/kenny/track_pieces/treeSmall.glb.import index eae323283c047f6e93fbe273e7ce24c4b2b3dc5a..d12eb44ecae8c23394b8211fb0f560e8be8e0a82 100644 --- a/assets/glb_files/kenny/track_pieces/treeSmall.glb.import +++ b/assets/glb_files/kenny/track_pieces/treeSmall.glb.import @@ -25,5 +25,8 @@ meshes/lightmap_texel_size=0.2 skins/use_named_skins=true animation/import=true animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true import_script/path="" _subresources={} +gltf/embedded_image_handling=1 diff --git a/assets/glb_files/kenny/tractor.glb.import b/assets/glb_files/kenny/tractor.glb.import index a8c6f83ca11fe57753e9d1a774613263b4496489..294be20e2c83cbc64836c73cba2d8dc4bc55beec 100644 --- a/assets/glb_files/kenny/tractor.glb.import +++ b/assets/glb_files/kenny/tractor.glb.import @@ -25,5 +25,8 @@ meshes/lightmap_texel_size=0.2 skins/use_named_skins=true animation/import=true animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true import_script/path="" _subresources={} +gltf/embedded_image_handling=1 diff --git a/assets/glb_files/kenny/tractorPolice.glb.import b/assets/glb_files/kenny/tractorPolice.glb.import index 9503185cabcca0051f86635c2d84afb3d32f1be2..cd9795dabbf4e892453eb1c1b0688ca1b99b116d 100644 --- a/assets/glb_files/kenny/tractorPolice.glb.import +++ b/assets/glb_files/kenny/tractorPolice.glb.import @@ -25,5 +25,8 @@ meshes/lightmap_texel_size=0.2 skins/use_named_skins=true animation/import=true animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true import_script/path="" _subresources={} +gltf/embedded_image_handling=1 diff --git a/assets/glb_files/kenny/tractorShovel.glb.import b/assets/glb_files/kenny/tractorShovel.glb.import index 8dcabdcf5a56a3f930f049d0ae7377e9d2478da1..bd2e8652d27f748222c04d8475df2763e0354769 100644 --- a/assets/glb_files/kenny/tractorShovel.glb.import +++ b/assets/glb_files/kenny/tractorShovel.glb.import @@ -25,5 +25,8 @@ meshes/lightmap_texel_size=0.2 skins/use_named_skins=true animation/import=true animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true import_script/path="" _subresources={} +gltf/embedded_image_handling=1 diff --git a/assets/glb_files/kenny/truck.glb.import b/assets/glb_files/kenny/truck.glb.import index 8c981753df14d4ac06216395be8abc96243008d7..27c4ee13e2c215b6c62b6a081f0adc6b2ad083fd 100644 --- a/assets/glb_files/kenny/truck.glb.import +++ b/assets/glb_files/kenny/truck.glb.import @@ -25,5 +25,8 @@ meshes/lightmap_texel_size=0.2 skins/use_named_skins=true animation/import=true animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true import_script/path="" _subresources={} +gltf/embedded_image_handling=1 diff --git a/assets/glb_files/kenny/truckFlat.glb.import b/assets/glb_files/kenny/truckFlat.glb.import index 64626f234332aa9ca59f87a939567fc1a818213b..de25ab30892e7f7efde869ade0dd6772fb6af951 100644 --- a/assets/glb_files/kenny/truckFlat.glb.import +++ b/assets/glb_files/kenny/truckFlat.glb.import @@ -25,5 +25,8 @@ meshes/lightmap_texel_size=0.2 skins/use_named_skins=true animation/import=true animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true import_script/path="" _subresources={} +gltf/embedded_image_handling=1 diff --git a/assets/glb_files/kenny/van.glb.import b/assets/glb_files/kenny/van.glb.import index ac452a1364931bf74c55faddef6eac0718c6897b..27cf01efb89aaa1aed671ad3daff3d391a8b7f5d 100644 --- a/assets/glb_files/kenny/van.glb.import +++ b/assets/glb_files/kenny/van.glb.import @@ -25,5 +25,8 @@ meshes/lightmap_texel_size=0.2 skins/use_named_skins=true animation/import=true animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true import_script/path="" _subresources={} +gltf/embedded_image_handling=1 diff --git a/assets/glb_files/kenny/wheelDark.glb.import b/assets/glb_files/kenny/wheelDark.glb.import index d2b7bfad02470cdbc74aa442903819f14ebc205e..e0b0fe0362d5fa92063eaac78aa5d795f730703d 100644 --- a/assets/glb_files/kenny/wheelDark.glb.import +++ b/assets/glb_files/kenny/wheelDark.glb.import @@ -25,5 +25,8 @@ meshes/lightmap_texel_size=0.2 skins/use_named_skins=true animation/import=true animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true import_script/path="" _subresources={} +gltf/embedded_image_handling=1 diff --git a/assets/glb_files/kenny/wheelDefault.glb.import b/assets/glb_files/kenny/wheelDefault.glb.import index c9b4adbec7b27068455f6725ea4de3da516e9dd1..bffd4f7a4e4d3f05a82d28ef52c8bb86c397bf7f 100644 --- a/assets/glb_files/kenny/wheelDefault.glb.import +++ b/assets/glb_files/kenny/wheelDefault.glb.import @@ -25,5 +25,8 @@ meshes/lightmap_texel_size=0.2 skins/use_named_skins=true animation/import=true animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true import_script/path="" _subresources={} +gltf/embedded_image_handling=1 diff --git a/assets/glb_files/kenny/wheelRacing.glb.import b/assets/glb_files/kenny/wheelRacing.glb.import index 92016d122149fb7803611da253b29261a6b0d172..0a62323eb696a4363799a8bd894bb03d6f8e8ae4 100644 --- a/assets/glb_files/kenny/wheelRacing.glb.import +++ b/assets/glb_files/kenny/wheelRacing.glb.import @@ -25,5 +25,8 @@ meshes/lightmap_texel_size=0.2 skins/use_named_skins=true animation/import=true animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true import_script/path="" _subresources={} +gltf/embedded_image_handling=1 diff --git a/assets/glb_files/kenny/wheelTractorBack.glb.import b/assets/glb_files/kenny/wheelTractorBack.glb.import index dd2bd046899591f518599dc575cd3bbdabe6ddb0..35a522ae9e4dd2e01147d115791f243ee386c1fb 100644 --- a/assets/glb_files/kenny/wheelTractorBack.glb.import +++ b/assets/glb_files/kenny/wheelTractorBack.glb.import @@ -25,5 +25,8 @@ meshes/lightmap_texel_size=0.2 skins/use_named_skins=true animation/import=true animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true import_script/path="" _subresources={} +gltf/embedded_image_handling=1 diff --git a/assets/glb_files/kenny/wheelTractorDarkBack.glb.import b/assets/glb_files/kenny/wheelTractorDarkBack.glb.import index 2a04174ef659d9806aadf2683bc9790c8313e808..d06d6609da958a0684980cd57238a835b5be6e8d 100644 --- a/assets/glb_files/kenny/wheelTractorDarkBack.glb.import +++ b/assets/glb_files/kenny/wheelTractorDarkBack.glb.import @@ -25,5 +25,8 @@ meshes/lightmap_texel_size=0.2 skins/use_named_skins=true animation/import=true animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true import_script/path="" _subresources={} +gltf/embedded_image_handling=1 diff --git a/assets/glb_files/kenny/wheelTractorDarkFront.glb.import b/assets/glb_files/kenny/wheelTractorDarkFront.glb.import index 9da36bb77818d1c10684fff64eb42702eeba8e1e..6898e9bb859bd7c2a6c91c825531a7d6e27636b3 100644 --- a/assets/glb_files/kenny/wheelTractorDarkFront.glb.import +++ b/assets/glb_files/kenny/wheelTractorDarkFront.glb.import @@ -25,5 +25,8 @@ meshes/lightmap_texel_size=0.2 skins/use_named_skins=true animation/import=true animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true import_script/path="" _subresources={} +gltf/embedded_image_handling=1 diff --git a/assets/glb_files/kenny/wheelTractorFront.glb.import b/assets/glb_files/kenny/wheelTractorFront.glb.import index 7f804cbefeb426c138111f7b900d675b19cdf8a8..88a6c5cfab70ba6769ee316cb843c4c4130eefdc 100644 --- a/assets/glb_files/kenny/wheelTractorFront.glb.import +++ b/assets/glb_files/kenny/wheelTractorFront.glb.import @@ -25,5 +25,8 @@ meshes/lightmap_texel_size=0.2 skins/use_named_skins=true animation/import=true animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true import_script/path="" _subresources={} +gltf/embedded_image_handling=1 diff --git a/assets/glb_files/kenny/wheelTruck.glb.import b/assets/glb_files/kenny/wheelTruck.glb.import index ea1d1c8332aaccdf409b81e0dc5b300e2f0c5f90..88fefc85f42ccc5d205757fc687e1dca45584fa6 100644 --- a/assets/glb_files/kenny/wheelTruck.glb.import +++ b/assets/glb_files/kenny/wheelTruck.glb.import @@ -25,5 +25,8 @@ meshes/lightmap_texel_size=0.2 skins/use_named_skins=true animation/import=true animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true import_script/path="" _subresources={} +gltf/embedded_image_handling=1 diff --git a/assets/glb_files/red_convertible.glb.import b/assets/glb_files/red_convertible.glb.import index f8def653a3c954b3979c89c13b793e0834bd9438..6daf487fd132d959a6342fb13d6c4771800a96b8 100644 --- a/assets/glb_files/red_convertible.glb.import +++ b/assets/glb_files/red_convertible.glb.import @@ -25,5 +25,8 @@ meshes/lightmap_texel_size=0.2 skins/use_named_skins=true animation/import=true animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true import_script/path="" _subresources={} +gltf/embedded_image_handling=1 diff --git a/assets/glb_files/red_convertible_ImphenziaPalette01.png b/assets/glb_files/red_convertible_ImphenziaPalette01.png new file mode 100644 index 0000000000000000000000000000000000000000..be6d8d1546c174c1655c8586081a99c244d2a993 --- /dev/null +++ b/assets/glb_files/red_convertible_ImphenziaPalette01.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:617bd70bdf904dab6a4ad9ab9b400276db1c8b4567eaaf2302e03fe67da9df96 +size 281 diff --git a/assets/glb_files/red_convertible_ImphenziaPalette01.png.import b/assets/glb_files/red_convertible_ImphenziaPalette01.png.import new file mode 100644 index 0000000000000000000000000000000000000000..6b64cbdf911327643ffa1d1e441448d462603b67 --- /dev/null +++ b/assets/glb_files/red_convertible_ImphenziaPalette01.png.import @@ -0,0 +1,36 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dr38idq3ypm4s" +path.s3tc="res://.godot/imported/red_convertible_ImphenziaPalette01.png-66bf03cc08c26fcb7ec2fd74d8ceb3ac.s3tc.ctex" +metadata={ +"imported_formats": ["s3tc_bptc"], +"vram_texture": true +} +generator_parameters={} + +[deps] + +source_file="res://assets/glb_files/red_convertible_ImphenziaPalette01.png" +dest_files=["res://.godot/imported/red_convertible_ImphenziaPalette01.png-66bf03cc08c26fcb7ec2fd74d8ceb3ac.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 diff --git a/assets/glb_files/rock.glb.import b/assets/glb_files/rock.glb.import index 0fb1f567b0a5f010a439d64c3b13722eb87bde2a..eab425f250fb54bd15747d5ad57073761edbeee2 100644 --- a/assets/glb_files/rock.glb.import +++ b/assets/glb_files/rock.glb.import @@ -25,5 +25,8 @@ meshes/lightmap_texel_size=0.2 skins/use_named_skins=true animation/import=true animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true import_script/path="" _subresources={} +gltf/embedded_image_handling=1 diff --git a/assets/glb_files/rock_new.glb.import b/assets/glb_files/rock_new.glb.import index ffa54bbad054e83c19bbb66b6d485ee5089eff36..89f24b08fb7d05ecdfa13b24af5ed15d95ac3f46 100644 --- a/assets/glb_files/rock_new.glb.import +++ b/assets/glb_files/rock_new.glb.import @@ -25,5 +25,8 @@ meshes/lightmap_texel_size=0.2 skins/use_named_skins=true animation/import=true animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true import_script/path="" _subresources={} +gltf/embedded_image_handling=1 diff --git a/assets/glb_files/rocks.glb.import b/assets/glb_files/rocks.glb.import index f70cfeb5f6efd68e87acbd184ddeb76fb0e8463c..4be07742b654ba4894ae3c3df60281daca169cc8 100644 --- a/assets/glb_files/rocks.glb.import +++ b/assets/glb_files/rocks.glb.import @@ -25,5 +25,8 @@ meshes/lightmap_texel_size=0.2 skins/use_named_skins=true animation/import=true animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true import_script/path="" _subresources={} +gltf/embedded_image_handling=1 diff --git a/assets/glb_files/rocks_ImphenziaPalette01.png b/assets/glb_files/rocks_ImphenziaPalette01.png new file mode 100644 index 0000000000000000000000000000000000000000..be6d8d1546c174c1655c8586081a99c244d2a993 --- /dev/null +++ b/assets/glb_files/rocks_ImphenziaPalette01.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:617bd70bdf904dab6a4ad9ab9b400276db1c8b4567eaaf2302e03fe67da9df96 +size 281 diff --git a/assets/glb_files/rocks_ImphenziaPalette01.png.import b/assets/glb_files/rocks_ImphenziaPalette01.png.import new file mode 100644 index 0000000000000000000000000000000000000000..c7f16e2ed4dbb0db553b1347bcab6b7203b9851f --- /dev/null +++ b/assets/glb_files/rocks_ImphenziaPalette01.png.import @@ -0,0 +1,36 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://biihhia3fkhfo" +path.s3tc="res://.godot/imported/rocks_ImphenziaPalette01.png-28ad35bbc79531ff3cbf7da910d09f69.s3tc.ctex" +metadata={ +"imported_formats": ["s3tc_bptc"], +"vram_texture": true +} +generator_parameters={} + +[deps] + +source_file="res://assets/glb_files/rocks_ImphenziaPalette01.png" +dest_files=["res://.godot/imported/rocks_ImphenziaPalette01.png-28ad35bbc79531ff3cbf7da910d09f69.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 diff --git a/assets/glb_files/tree.glb.import b/assets/glb_files/tree.glb.import index 1c769507fcf325d20b3305442376cf277b6241fe..687ea6aca82af034f2ad5c023468becf5bcf2757 100644 --- a/assets/glb_files/tree.glb.import +++ b/assets/glb_files/tree.glb.import @@ -25,5 +25,8 @@ meshes/lightmap_texel_size=0.2 skins/use_named_skins=true animation/import=true animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true import_script/path="" _subresources={} +gltf/embedded_image_handling=1 diff --git a/assets/glb_files/trees.glb.import b/assets/glb_files/trees.glb.import index 71d006bd13263f3688e0871b334c487ce3a6f892..45f42de06654aa6760c3542674627d6f27f4dcd2 100644 --- a/assets/glb_files/trees.glb.import +++ b/assets/glb_files/trees.glb.import @@ -25,5 +25,8 @@ meshes/lightmap_texel_size=0.2 skins/use_named_skins=true animation/import=true animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true import_script/path="" _subresources={} +gltf/embedded_image_handling=1 diff --git a/assets/glb_files/trees_ImphenziaPalette01.png b/assets/glb_files/trees_ImphenziaPalette01.png new file mode 100644 index 0000000000000000000000000000000000000000..be6d8d1546c174c1655c8586081a99c244d2a993 --- /dev/null +++ b/assets/glb_files/trees_ImphenziaPalette01.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:617bd70bdf904dab6a4ad9ab9b400276db1c8b4567eaaf2302e03fe67da9df96 +size 281 diff --git a/assets/glb_files/trees_ImphenziaPalette01.png.import b/assets/glb_files/trees_ImphenziaPalette01.png.import new file mode 100644 index 0000000000000000000000000000000000000000..0d0a1a156aa4126850cce7c995512226e7520c4a --- /dev/null +++ b/assets/glb_files/trees_ImphenziaPalette01.png.import @@ -0,0 +1,36 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dxsky8tp38ecg" +path.s3tc="res://.godot/imported/trees_ImphenziaPalette01.png-cecdd3fa4d53489013f8023981ac83cc.s3tc.ctex" +metadata={ +"imported_formats": ["s3tc_bptc"], +"vram_texture": true +} +generator_parameters={} + +[deps] + +source_file="res://assets/glb_files/trees_ImphenziaPalette01.png" +dest_files=["res://.godot/imported/trees_ImphenziaPalette01.png-cecdd3fa4d53489013f8023981ac83cc.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 diff --git a/assets/glb_files/waypoint.glb.import b/assets/glb_files/waypoint.glb.import index 9695a8796831b8b391264490e82f1b8cf45e89b7..b62fce3f290b7593ac24bdbc06a04e18d1e558b9 100644 --- a/assets/glb_files/waypoint.glb.import +++ b/assets/glb_files/waypoint.glb.import @@ -25,5 +25,8 @@ meshes/lightmap_texel_size=0.2 skins/use_named_skins=true animation/import=true animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true import_script/path="" _subresources={} +gltf/embedded_image_handling=1 diff --git a/assets/glb_files/waypoint_ImphenziaPalette01.png b/assets/glb_files/waypoint_ImphenziaPalette01.png new file mode 100644 index 0000000000000000000000000000000000000000..be6d8d1546c174c1655c8586081a99c244d2a993 --- /dev/null +++ b/assets/glb_files/waypoint_ImphenziaPalette01.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:617bd70bdf904dab6a4ad9ab9b400276db1c8b4567eaaf2302e03fe67da9df96 +size 281 diff --git a/assets/glb_files/waypoint_ImphenziaPalette01.png.import b/assets/glb_files/waypoint_ImphenziaPalette01.png.import new file mode 100644 index 0000000000000000000000000000000000000000..9c9a3c0ef33d3cb0c7d5c947de80a3113fe6aa88 --- /dev/null +++ b/assets/glb_files/waypoint_ImphenziaPalette01.png.import @@ -0,0 +1,36 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cyqmf78x8dlyt" +path.s3tc="res://.godot/imported/waypoint_ImphenziaPalette01.png-e0f3aaccaff9af86ca1dffd00d3cc76e.s3tc.ctex" +metadata={ +"imported_formats": ["s3tc_bptc"], +"vram_texture": true +} +generator_parameters={} + +[deps] + +source_file="res://assets/glb_files/waypoint_ImphenziaPalette01.png" +dest_files=["res://.godot/imported/waypoint_ImphenziaPalette01.png-e0f3aaccaff9af86ca1dffd00d3cc76e.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 diff --git a/assets/je_gray_park_4k.hdr.import b/assets/je_gray_park_4k.hdr.import index 6e6873f19d83c34801b5297435da71b950cc72fd..dbc1f24fc4bf2d25a85a147cad0862e3aed4cfb5 100644 --- a/assets/je_gray_park_4k.hdr.import +++ b/assets/je_gray_park_4k.hdr.import @@ -3,24 +3,23 @@ importer="texture" type="CompressedTexture2D" uid="uid://s0js8o5ixt3v" -path.s3tc="res://.godot/imported/je_gray_park_4k.hdr-4e9438cb57a2ba8ef372cc53405352b1.s3tc.ctex" -path.etc2="res://.godot/imported/je_gray_park_4k.hdr-4e9438cb57a2ba8ef372cc53405352b1.etc2.ctex" +path.bptc="res://.godot/imported/je_gray_park_4k.hdr-4e9438cb57a2ba8ef372cc53405352b1.bptc.ctex" metadata={ -"imported_formats": ["s3tc", "etc2"], +"imported_formats": ["s3tc_bptc"], "vram_texture": true } [deps] source_file="res://assets/je_gray_park_4k.hdr" -dest_files=["res://.godot/imported/je_gray_park_4k.hdr-4e9438cb57a2ba8ef372cc53405352b1.s3tc.ctex", "res://.godot/imported/je_gray_park_4k.hdr-4e9438cb57a2ba8ef372cc53405352b1.etc2.ctex"] +dest_files=["res://.godot/imported/je_gray_park_4k.hdr-4e9438cb57a2ba8ef372cc53405352b1.bptc.ctex"] [params] compress/mode=2 +compress/high_quality=false compress/lossy_quality=0.7 compress/hdr_compression=1 -compress/bptc_ldr=0 compress/normal_map=0 compress/channel_pack=0 mipmaps/generate=true diff --git a/assets/kenny_track1.glb.import b/assets/kenny_track1.glb.import index ba32589b5c9c47a102a3817a9fe6a37c63cd8124..c329a1cf2e76b94599e39ae5508e08a22241f47d 100644 --- a/assets/kenny_track1.glb.import +++ b/assets/kenny_track1.glb.import @@ -25,5 +25,8 @@ meshes/lightmap_texel_size=0.2 skins/use_named_skins=true animation/import=true animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true import_script/path="" _subresources={} +gltf/embedded_image_handling=1 diff --git a/assets/kenny_track1glb.glb.import b/assets/kenny_track1glb.glb.import index e23a849d54d58fc090926ba73f24f335c5e679c5..980d3486a6152eaa5e362fe201cd55e387fdefc0 100644 --- a/assets/kenny_track1glb.glb.import +++ b/assets/kenny_track1glb.glb.import @@ -25,5 +25,8 @@ meshes/lightmap_texel_size=0.2 skins/use_named_skins=true animation/import=true animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true import_script/path="" _subresources={} +gltf/embedded_image_handling=1 diff --git a/assets/kenny_track2.glb.import b/assets/kenny_track2.glb.import index 1f090a59df3ce706aea2fdf8b1f67fd73afab5b2..0b8c7e1485b51b96e7b1c91688be24f896847bfb 100644 --- a/assets/kenny_track2.glb.import +++ b/assets/kenny_track2.glb.import @@ -25,5 +25,8 @@ meshes/lightmap_texel_size=0.2 skins/use_named_skins=true animation/import=true animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true import_script/path="" _subresources={} +gltf/embedded_image_handling=1 diff --git a/assets/lilienstein_1k.hdr.import b/assets/lilienstein_1k.hdr.import index 4cb14120228452ed4a7fcfae3dfdfa297e1408c8..fa581793c4a20d5f0caff794c6798e5c1492e928 100644 --- a/assets/lilienstein_1k.hdr.import +++ b/assets/lilienstein_1k.hdr.import @@ -3,24 +3,23 @@ importer="texture" type="CompressedTexture2D" uid="uid://cbb48twr7cska" -path.s3tc="res://.godot/imported/lilienstein_1k.hdr-3ae12fc7d2cf9650cec3b4a1bab69ab4.s3tc.ctex" -path.etc2="res://.godot/imported/lilienstein_1k.hdr-3ae12fc7d2cf9650cec3b4a1bab69ab4.etc2.ctex" +path.bptc="res://.godot/imported/lilienstein_1k.hdr-3ae12fc7d2cf9650cec3b4a1bab69ab4.bptc.ctex" metadata={ -"imported_formats": ["s3tc", "etc2"], +"imported_formats": ["s3tc_bptc"], "vram_texture": true } [deps] source_file="res://assets/lilienstein_1k.hdr" -dest_files=["res://.godot/imported/lilienstein_1k.hdr-3ae12fc7d2cf9650cec3b4a1bab69ab4.s3tc.ctex", "res://.godot/imported/lilienstein_1k.hdr-3ae12fc7d2cf9650cec3b4a1bab69ab4.etc2.ctex"] +dest_files=["res://.godot/imported/lilienstein_1k.hdr-3ae12fc7d2cf9650cec3b4a1bab69ab4.bptc.ctex"] [params] compress/mode=2 +compress/high_quality=false compress/lossy_quality=0.7 compress/hdr_compression=1 -compress/bptc_ldr=0 compress/normal_map=0 compress/channel_pack=0 mipmaps/generate=true diff --git a/assets/stable/NormalMap.png.import b/assets/stable/NormalMap.png.import index 06b56aebd86257e9c8a30b17c8b213dc38b33f42..c83d46a33aeec081205ca0c490564a98ff65820b 100644 --- a/assets/stable/NormalMap.png.import +++ b/assets/stable/NormalMap.png.import @@ -4,23 +4,22 @@ importer="texture" type="CompressedTexture2D" uid="uid://fj1710l08n7v" path.s3tc="res://.godot/imported/NormalMap.png-68f7be2941376a200645cc878924a986.s3tc.ctex" -path.etc2="res://.godot/imported/NormalMap.png-68f7be2941376a200645cc878924a986.etc2.ctex" metadata={ -"imported_formats": ["s3tc", "etc2"], +"imported_formats": ["s3tc_bptc"], "vram_texture": true } [deps] source_file="res://assets/stable/NormalMap.png" -dest_files=["res://.godot/imported/NormalMap.png-68f7be2941376a200645cc878924a986.s3tc.ctex", "res://.godot/imported/NormalMap.png-68f7be2941376a200645cc878924a986.etc2.ctex"] +dest_files=["res://.godot/imported/NormalMap.png-68f7be2941376a200645cc878924a986.s3tc.ctex"] [params] compress/mode=2 +compress/high_quality=false compress/lossy_quality=0.7 compress/hdr_compression=1 -compress/bptc_ldr=0 compress/normal_map=1 compress/channel_pack=0 mipmaps/generate=true diff --git a/assets/stable/grass1.png.import b/assets/stable/grass1.png.import index 4ec53121f5378aaaaa4cf4636f0881b841c8ea6c..9e9defa952237ecfa1cd1822c3fb7c6977319947 100644 --- a/assets/stable/grass1.png.import +++ b/assets/stable/grass1.png.import @@ -4,23 +4,22 @@ importer="texture" type="CompressedTexture2D" uid="uid://diflxkbtbcdjg" path.s3tc="res://.godot/imported/grass1.png-cac8ec429a4340b0b54c189b24f3370e.s3tc.ctex" -path.etc2="res://.godot/imported/grass1.png-cac8ec429a4340b0b54c189b24f3370e.etc2.ctex" metadata={ -"imported_formats": ["s3tc", "etc2"], +"imported_formats": ["s3tc_bptc"], "vram_texture": true } [deps] source_file="res://assets/stable/grass1.png" -dest_files=["res://.godot/imported/grass1.png-cac8ec429a4340b0b54c189b24f3370e.s3tc.ctex", "res://.godot/imported/grass1.png-cac8ec429a4340b0b54c189b24f3370e.etc2.ctex"] +dest_files=["res://.godot/imported/grass1.png-cac8ec429a4340b0b54c189b24f3370e.s3tc.ctex"] [params] compress/mode=2 +compress/high_quality=false compress/lossy_quality=0.7 compress/hdr_compression=1 -compress/bptc_ldr=0 compress/normal_map=0 compress/channel_pack=0 mipmaps/generate=true diff --git a/assets/stable/grass6.png.import b/assets/stable/grass6.png.import index 07169fe523c109a305539bf03672da0627680147..109fc8d191842dedf58b227dfe7b37e43fdd8dd0 100644 --- a/assets/stable/grass6.png.import +++ b/assets/stable/grass6.png.import @@ -4,23 +4,22 @@ importer="texture" type="CompressedTexture2D" uid="uid://baph8xn1nuljv" path.s3tc="res://.godot/imported/grass6.png-10d08f5dc5b6f304c2bd284c545b8e62.s3tc.ctex" -path.etc2="res://.godot/imported/grass6.png-10d08f5dc5b6f304c2bd284c545b8e62.etc2.ctex" metadata={ -"imported_formats": ["s3tc", "etc2"], +"imported_formats": ["s3tc_bptc"], "vram_texture": true } [deps] source_file="res://assets/stable/grass6.png" -dest_files=["res://.godot/imported/grass6.png-10d08f5dc5b6f304c2bd284c545b8e62.s3tc.ctex", "res://.godot/imported/grass6.png-10d08f5dc5b6f304c2bd284c545b8e62.etc2.ctex"] +dest_files=["res://.godot/imported/grass6.png-10d08f5dc5b6f304c2bd284c545b8e62.s3tc.ctex"] [params] compress/mode=2 +compress/high_quality=false compress/lossy_quality=0.7 compress/hdr_compression=1 -compress/bptc_ldr=0 compress/normal_map=0 compress/channel_pack=0 mipmaps/generate=true diff --git a/assets/stable/rock1.png.import b/assets/stable/rock1.png.import index f2919a1f5167edd73c408ad84e7c2f621e4f59ac..ea2b1daecf0555a8cae1128256e1b5607f062750 100644 --- a/assets/stable/rock1.png.import +++ b/assets/stable/rock1.png.import @@ -4,23 +4,22 @@ importer="texture" type="CompressedTexture2D" uid="uid://bd1k1gjblubdt" path.s3tc="res://.godot/imported/rock1.png-5e69774ebf7482c78c12c076c5284aca.s3tc.ctex" -path.etc2="res://.godot/imported/rock1.png-5e69774ebf7482c78c12c076c5284aca.etc2.ctex" metadata={ -"imported_formats": ["s3tc", "etc2"], +"imported_formats": ["s3tc_bptc"], "vram_texture": true } [deps] source_file="res://assets/stable/rock1.png" -dest_files=["res://.godot/imported/rock1.png-5e69774ebf7482c78c12c076c5284aca.s3tc.ctex", "res://.godot/imported/rock1.png-5e69774ebf7482c78c12c076c5284aca.etc2.ctex"] +dest_files=["res://.godot/imported/rock1.png-5e69774ebf7482c78c12c076c5284aca.s3tc.ctex"] [params] compress/mode=2 +compress/high_quality=false compress/lossy_quality=0.7 compress/hdr_compression=1 -compress/bptc_ldr=0 compress/normal_map=0 compress/channel_pack=0 mipmaps/generate=true diff --git a/assets/stable/rock2.png.import b/assets/stable/rock2.png.import index 462953f5c8b4886413f77019adba9812fe3e3ef4..413f30c44833cecc158e4f7f123a69c7f23eb3a1 100644 --- a/assets/stable/rock2.png.import +++ b/assets/stable/rock2.png.import @@ -4,23 +4,22 @@ importer="texture" type="CompressedTexture2D" uid="uid://clvv7gbmlf0a" path.s3tc="res://.godot/imported/rock2.png-bce206356ad01d6833dca51ed874a48b.s3tc.ctex" -path.etc2="res://.godot/imported/rock2.png-bce206356ad01d6833dca51ed874a48b.etc2.ctex" metadata={ -"imported_formats": ["s3tc", "etc2"], +"imported_formats": ["s3tc_bptc"], "vram_texture": true } [deps] source_file="res://assets/stable/rock2.png" -dest_files=["res://.godot/imported/rock2.png-bce206356ad01d6833dca51ed874a48b.s3tc.ctex", "res://.godot/imported/rock2.png-bce206356ad01d6833dca51ed874a48b.etc2.ctex"] +dest_files=["res://.godot/imported/rock2.png-bce206356ad01d6833dca51ed874a48b.s3tc.ctex"] [params] compress/mode=2 +compress/high_quality=false compress/lossy_quality=0.7 compress/hdr_compression=1 -compress/bptc_ldr=0 compress/normal_map=0 compress/channel_pack=0 mipmaps/generate=true diff --git a/assets/stable/rock3.png.import b/assets/stable/rock3.png.import index 569d6acf8dac995ac4139f69843cc94990c74f01..112d67218b9b867a68303c18b395d6a61f76bb50 100644 --- a/assets/stable/rock3.png.import +++ b/assets/stable/rock3.png.import @@ -4,23 +4,22 @@ importer="texture" type="CompressedTexture2D" uid="uid://cd00iqmvybqxh" path.s3tc="res://.godot/imported/rock3.png-fbd02b747318850e4f0719dd4837a052.s3tc.ctex" -path.etc2="res://.godot/imported/rock3.png-fbd02b747318850e4f0719dd4837a052.etc2.ctex" metadata={ -"imported_formats": ["s3tc", "etc2"], +"imported_formats": ["s3tc_bptc"], "vram_texture": true } [deps] source_file="res://assets/stable/rock3.png" -dest_files=["res://.godot/imported/rock3.png-fbd02b747318850e4f0719dd4837a052.s3tc.ctex", "res://.godot/imported/rock3.png-fbd02b747318850e4f0719dd4837a052.etc2.ctex"] +dest_files=["res://.godot/imported/rock3.png-fbd02b747318850e4f0719dd4837a052.s3tc.ctex"] [params] compress/mode=2 +compress/high_quality=false compress/lossy_quality=0.7 compress/hdr_compression=1 -compress/bptc_ldr=0 compress/normal_map=0 compress/channel_pack=0 mipmaps/generate=true diff --git a/assets/stable/rock4.png.import b/assets/stable/rock4.png.import index b94512c1259c99f397142b153a105cc9110bd263..f80f140225c3ae7db25435c945b50be8da6a7c83 100644 --- a/assets/stable/rock4.png.import +++ b/assets/stable/rock4.png.import @@ -4,23 +4,22 @@ importer="texture" type="CompressedTexture2D" uid="uid://c71kp1w8cmqy1" path.s3tc="res://.godot/imported/rock4.png-7ccebcf8a759015fa1c805014d657f97.s3tc.ctex" -path.etc2="res://.godot/imported/rock4.png-7ccebcf8a759015fa1c805014d657f97.etc2.ctex" metadata={ -"imported_formats": ["s3tc", "etc2"], +"imported_formats": ["s3tc_bptc"], "vram_texture": true } [deps] source_file="res://assets/stable/rock4.png" -dest_files=["res://.godot/imported/rock4.png-7ccebcf8a759015fa1c805014d657f97.s3tc.ctex", "res://.godot/imported/rock4.png-7ccebcf8a759015fa1c805014d657f97.etc2.ctex"] +dest_files=["res://.godot/imported/rock4.png-7ccebcf8a759015fa1c805014d657f97.s3tc.ctex"] [params] compress/mode=2 +compress/high_quality=false compress/lossy_quality=0.7 compress/hdr_compression=1 -compress/bptc_ldr=0 compress/normal_map=0 compress/channel_pack=0 mipmaps/generate=true diff --git a/assets/stable/rock5.png.import b/assets/stable/rock5.png.import index 33d2631515ca0abc9b0217de24677b09fd9304fe..80418aa160ac6a5e601a2b6dd909e3993518aeaf 100644 --- a/assets/stable/rock5.png.import +++ b/assets/stable/rock5.png.import @@ -4,23 +4,22 @@ importer="texture" type="CompressedTexture2D" uid="uid://b16j7fmbm4a6" path.s3tc="res://.godot/imported/rock5.png-26877b87a60e90dee2acd41afe44b8fa.s3tc.ctex" -path.etc2="res://.godot/imported/rock5.png-26877b87a60e90dee2acd41afe44b8fa.etc2.ctex" metadata={ -"imported_formats": ["s3tc", "etc2"], +"imported_formats": ["s3tc_bptc"], "vram_texture": true } [deps] source_file="res://assets/stable/rock5.png" -dest_files=["res://.godot/imported/rock5.png-26877b87a60e90dee2acd41afe44b8fa.s3tc.ctex", "res://.godot/imported/rock5.png-26877b87a60e90dee2acd41afe44b8fa.etc2.ctex"] +dest_files=["res://.godot/imported/rock5.png-26877b87a60e90dee2acd41afe44b8fa.s3tc.ctex"] [params] compress/mode=2 +compress/high_quality=false compress/lossy_quality=0.7 compress/hdr_compression=1 -compress/bptc_ldr=0 compress/normal_map=0 compress/channel_pack=0 mipmaps/generate=true diff --git a/assets/stable/rock6.png.import b/assets/stable/rock6.png.import index 38197afa47e2254e89a671377e76412dad1141bf..2a3e2cdd12faac9e4e926eeeea4fe6001b363d72 100644 --- a/assets/stable/rock6.png.import +++ b/assets/stable/rock6.png.import @@ -4,23 +4,22 @@ importer="texture" type="CompressedTexture2D" uid="uid://ctl34bsmhb2cd" path.s3tc="res://.godot/imported/rock6.png-7b0988cde71723a1453f1f01c298cb07.s3tc.ctex" -path.etc2="res://.godot/imported/rock6.png-7b0988cde71723a1453f1f01c298cb07.etc2.ctex" metadata={ -"imported_formats": ["s3tc", "etc2"], +"imported_formats": ["s3tc_bptc"], "vram_texture": true } [deps] source_file="res://assets/stable/rock6.png" -dest_files=["res://.godot/imported/rock6.png-7b0988cde71723a1453f1f01c298cb07.s3tc.ctex", "res://.godot/imported/rock6.png-7b0988cde71723a1453f1f01c298cb07.etc2.ctex"] +dest_files=["res://.godot/imported/rock6.png-7b0988cde71723a1453f1f01c298cb07.s3tc.ctex"] [params] compress/mode=2 +compress/high_quality=false compress/lossy_quality=0.7 compress/hdr_compression=1 -compress/bptc_ldr=0 compress/normal_map=0 compress/channel_pack=0 mipmaps/generate=true diff --git a/assets/stable/rock7.png.import b/assets/stable/rock7.png.import index 37235d2c2ae694f8349bbaa61136e4c4f8cc92d4..26d2270cff43e4b7ede60488f48822c3ce1658a6 100644 --- a/assets/stable/rock7.png.import +++ b/assets/stable/rock7.png.import @@ -4,23 +4,22 @@ importer="texture" type="CompressedTexture2D" uid="uid://cifd43ugrdr5x" path.s3tc="res://.godot/imported/rock7.png-71b035058f04c369409fdbfe3a61b912.s3tc.ctex" -path.etc2="res://.godot/imported/rock7.png-71b035058f04c369409fdbfe3a61b912.etc2.ctex" metadata={ -"imported_formats": ["s3tc", "etc2"], +"imported_formats": ["s3tc_bptc"], "vram_texture": true } [deps] source_file="res://assets/stable/rock7.png" -dest_files=["res://.godot/imported/rock7.png-71b035058f04c369409fdbfe3a61b912.s3tc.ctex", "res://.godot/imported/rock7.png-71b035058f04c369409fdbfe3a61b912.etc2.ctex"] +dest_files=["res://.godot/imported/rock7.png-71b035058f04c369409fdbfe3a61b912.s3tc.ctex"] [params] compress/mode=2 +compress/high_quality=false compress/lossy_quality=0.7 compress/hdr_compression=1 -compress/bptc_ldr=0 compress/normal_map=0 compress/channel_pack=0 mipmaps/generate=true diff --git a/assets/stable/rock8.png.import b/assets/stable/rock8.png.import index cf40c287314d93d0fba0a5014e0986b303c011db..4ecaf493f3d25557f78897edb5a3b029afa9c19d 100644 --- a/assets/stable/rock8.png.import +++ b/assets/stable/rock8.png.import @@ -4,23 +4,22 @@ importer="texture" type="CompressedTexture2D" uid="uid://bqmq5nmkq4y7g" path.s3tc="res://.godot/imported/rock8.png-ab23aaa516f83aa1a9306322820668fc.s3tc.ctex" -path.etc2="res://.godot/imported/rock8.png-ab23aaa516f83aa1a9306322820668fc.etc2.ctex" metadata={ -"imported_formats": ["s3tc", "etc2"], +"imported_formats": ["s3tc_bptc"], "vram_texture": true } [deps] source_file="res://assets/stable/rock8.png" -dest_files=["res://.godot/imported/rock8.png-ab23aaa516f83aa1a9306322820668fc.s3tc.ctex", "res://.godot/imported/rock8.png-ab23aaa516f83aa1a9306322820668fc.etc2.ctex"] +dest_files=["res://.godot/imported/rock8.png-ab23aaa516f83aa1a9306322820668fc.s3tc.ctex"] [params] compress/mode=2 +compress/high_quality=false compress/lossy_quality=0.7 compress/hdr_compression=1 -compress/bptc_ldr=0 compress/normal_map=0 compress/channel_pack=0 mipmaps/generate=true diff --git a/assets/stable/tree_bark1.png.import b/assets/stable/tree_bark1.png.import index 05f318b7ebdb29adc1a5f0b79364fc793361190d..c61382717e7959a017877a425082a7028329dd77 100644 --- a/assets/stable/tree_bark1.png.import +++ b/assets/stable/tree_bark1.png.import @@ -4,23 +4,22 @@ importer="texture" type="CompressedTexture2D" uid="uid://b5g25bnkmondu" path.s3tc="res://.godot/imported/tree_bark1.png-e0b35ff9a4a7fe9c47056a6985ee0197.s3tc.ctex" -path.etc2="res://.godot/imported/tree_bark1.png-e0b35ff9a4a7fe9c47056a6985ee0197.etc2.ctex" metadata={ -"imported_formats": ["s3tc", "etc2"], +"imported_formats": ["s3tc_bptc"], "vram_texture": true } [deps] source_file="res://assets/stable/tree_bark1.png" -dest_files=["res://.godot/imported/tree_bark1.png-e0b35ff9a4a7fe9c47056a6985ee0197.s3tc.ctex", "res://.godot/imported/tree_bark1.png-e0b35ff9a4a7fe9c47056a6985ee0197.etc2.ctex"] +dest_files=["res://.godot/imported/tree_bark1.png-e0b35ff9a4a7fe9c47056a6985ee0197.s3tc.ctex"] [params] compress/mode=2 +compress/high_quality=false compress/lossy_quality=0.7 compress/hdr_compression=1 -compress/bptc_ldr=0 compress/normal_map=0 compress/channel_pack=0 mipmaps/generate=true diff --git a/assets/stable/tree_leaves1.png.import b/assets/stable/tree_leaves1.png.import index 1d34f81c96361a04aab556d0d55b3aec7441a076..e0f845584d407dc88544b7e4fa7825fa6f2df85a 100644 --- a/assets/stable/tree_leaves1.png.import +++ b/assets/stable/tree_leaves1.png.import @@ -4,23 +4,22 @@ importer="texture" type="CompressedTexture2D" uid="uid://c6u013jfdw24i" path.s3tc="res://.godot/imported/tree_leaves1.png-0867bac062600ebd64b9c3b351e8ee13.s3tc.ctex" -path.etc2="res://.godot/imported/tree_leaves1.png-0867bac062600ebd64b9c3b351e8ee13.etc2.ctex" metadata={ -"imported_formats": ["s3tc", "etc2"], +"imported_formats": ["s3tc_bptc"], "vram_texture": true } [deps] source_file="res://assets/stable/tree_leaves1.png" -dest_files=["res://.godot/imported/tree_leaves1.png-0867bac062600ebd64b9c3b351e8ee13.s3tc.ctex", "res://.godot/imported/tree_leaves1.png-0867bac062600ebd64b9c3b351e8ee13.etc2.ctex"] +dest_files=["res://.godot/imported/tree_leaves1.png-0867bac062600ebd64b9c3b351e8ee13.s3tc.ctex"] [params] compress/mode=2 +compress/high_quality=false compress/lossy_quality=0.7 compress/hdr_compression=1 -compress/bptc_ldr=0 compress/normal_map=0 compress/channel_pack=0 mipmaps/generate=true diff --git a/assets/stable/tree_leaves2.png.import b/assets/stable/tree_leaves2.png.import index 72786c8bc19ea87d322c0848b82780762e2fb25b..bfdb42763f1ff735a60ef5f3e6814f391b5e5537 100644 --- a/assets/stable/tree_leaves2.png.import +++ b/assets/stable/tree_leaves2.png.import @@ -4,23 +4,22 @@ importer="texture" type="CompressedTexture2D" uid="uid://cm5bn0kot5jv2" path.s3tc="res://.godot/imported/tree_leaves2.png-71dde53436f78dcd1ed5c1e4d92bf8d1.s3tc.ctex" -path.etc2="res://.godot/imported/tree_leaves2.png-71dde53436f78dcd1ed5c1e4d92bf8d1.etc2.ctex" metadata={ -"imported_formats": ["s3tc", "etc2"], +"imported_formats": ["s3tc_bptc"], "vram_texture": true } [deps] source_file="res://assets/stable/tree_leaves2.png" -dest_files=["res://.godot/imported/tree_leaves2.png-71dde53436f78dcd1ed5c1e4d92bf8d1.s3tc.ctex", "res://.godot/imported/tree_leaves2.png-71dde53436f78dcd1ed5c1e4d92bf8d1.etc2.ctex"] +dest_files=["res://.godot/imported/tree_leaves2.png-71dde53436f78dcd1ed5c1e4d92bf8d1.s3tc.ctex"] [params] compress/mode=2 +compress/high_quality=false compress/lossy_quality=0.7 compress/hdr_compression=1 -compress/bptc_ldr=0 compress/normal_map=0 compress/channel_pack=0 mipmaps/generate=true diff --git a/assets/stable/tree_leaves3.png.import b/assets/stable/tree_leaves3.png.import index 84487d697d685ad9123df68306c72576891874bd..127d8fefb05b0872d96b514d17137837490a9d1d 100644 --- a/assets/stable/tree_leaves3.png.import +++ b/assets/stable/tree_leaves3.png.import @@ -4,23 +4,22 @@ importer="texture" type="CompressedTexture2D" uid="uid://3lisnwy0cbgj" path.s3tc="res://.godot/imported/tree_leaves3.png-8428fb2a82773f032a0bd93e47e54eac.s3tc.ctex" -path.etc2="res://.godot/imported/tree_leaves3.png-8428fb2a82773f032a0bd93e47e54eac.etc2.ctex" metadata={ -"imported_formats": ["s3tc", "etc2"], +"imported_formats": ["s3tc_bptc"], "vram_texture": true } [deps] source_file="res://assets/stable/tree_leaves3.png" -dest_files=["res://.godot/imported/tree_leaves3.png-8428fb2a82773f032a0bd93e47e54eac.s3tc.ctex", "res://.godot/imported/tree_leaves3.png-8428fb2a82773f032a0bd93e47e54eac.etc2.ctex"] +dest_files=["res://.godot/imported/tree_leaves3.png-8428fb2a82773f032a0bd93e47e54eac.s3tc.ctex"] [params] compress/mode=2 +compress/high_quality=false compress/lossy_quality=0.7 compress/hdr_compression=1 -compress/bptc_ldr=0 compress/normal_map=0 compress/channel_pack=0 mipmaps/generate=true diff --git a/assets/stable/tree_leaves4.png.import b/assets/stable/tree_leaves4.png.import index 21d840b5592ad499f30eedfa7ccf4422ce9fe5ac..c51e40af30473471e710f6c6fcc20cc92d3f4304 100644 --- a/assets/stable/tree_leaves4.png.import +++ b/assets/stable/tree_leaves4.png.import @@ -4,23 +4,22 @@ importer="texture" type="CompressedTexture2D" uid="uid://v7iwcxle72ss" path.s3tc="res://.godot/imported/tree_leaves4.png-216900a51fcb7e328ce9b3e78f882d31.s3tc.ctex" -path.etc2="res://.godot/imported/tree_leaves4.png-216900a51fcb7e328ce9b3e78f882d31.etc2.ctex" metadata={ -"imported_formats": ["s3tc", "etc2"], +"imported_formats": ["s3tc_bptc"], "vram_texture": true } [deps] source_file="res://assets/stable/tree_leaves4.png" -dest_files=["res://.godot/imported/tree_leaves4.png-216900a51fcb7e328ce9b3e78f882d31.s3tc.ctex", "res://.godot/imported/tree_leaves4.png-216900a51fcb7e328ce9b3e78f882d31.etc2.ctex"] +dest_files=["res://.godot/imported/tree_leaves4.png-216900a51fcb7e328ce9b3e78f882d31.s3tc.ctex"] [params] compress/mode=2 +compress/high_quality=false compress/lossy_quality=0.7 compress/hdr_compression=1 -compress/bptc_ldr=0 compress/normal_map=0 compress/channel_pack=0 mipmaps/generate=true diff --git a/assets/stable/tree_leaves5.png.import b/assets/stable/tree_leaves5.png.import index 25541733a0c59f15af11ce7cc3b111059040fdf4..e31e8632bcb683e1588a57ed009d88655cd7056a 100644 --- a/assets/stable/tree_leaves5.png.import +++ b/assets/stable/tree_leaves5.png.import @@ -4,23 +4,22 @@ importer="texture" type="CompressedTexture2D" uid="uid://207yv1hcluxv" path.s3tc="res://.godot/imported/tree_leaves5.png-337d6e4c7a4c924a0cca50fb191a787c.s3tc.ctex" -path.etc2="res://.godot/imported/tree_leaves5.png-337d6e4c7a4c924a0cca50fb191a787c.etc2.ctex" metadata={ -"imported_formats": ["s3tc", "etc2"], +"imported_formats": ["s3tc_bptc"], "vram_texture": true } [deps] source_file="res://assets/stable/tree_leaves5.png" -dest_files=["res://.godot/imported/tree_leaves5.png-337d6e4c7a4c924a0cca50fb191a787c.s3tc.ctex", "res://.godot/imported/tree_leaves5.png-337d6e4c7a4c924a0cca50fb191a787c.etc2.ctex"] +dest_files=["res://.godot/imported/tree_leaves5.png-337d6e4c7a4c924a0cca50fb191a787c.s3tc.ctex"] [params] compress/mode=2 +compress/high_quality=false compress/lossy_quality=0.7 compress/hdr_compression=1 -compress/bptc_ldr=0 compress/normal_map=0 compress/channel_pack=0 mipmaps/generate=true diff --git a/bin/Racer.console.exe b/bin/Racer.console.exe new file mode 100644 index 0000000000000000000000000000000000000000..129f9b7a74e59340a5ae2f0b7ca247b940af60fb Binary files /dev/null and b/bin/Racer.console.exe differ diff --git a/bin/Racer.exe b/bin/Racer.exe index 0df6a5ab75c5a55232be5405d01de5fa08134ab1..d06380a59bd46151a5a10cf7c5689ee9a664e867 100644 --- a/bin/Racer.exe +++ b/bin/Racer.exe @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:c1a76bed716a2260c203ed726bd1762ca25b8d25c49b868828f6a74f0ad42457 -size 63622656 +oid sha256:784e2e3b2022a9421df07c764fc394ff0576147b16d186b9ed17fb725e96d4d4 +size 68805120 diff --git a/bin/Racer.pck b/bin/Racer.pck index 4e3ed61f42fa7f9d6957755928bd3668a2899f77..6f429bfdcaaf08bf7c66038124b70b19033d2b0a 100644 --- a/bin/Racer.pck +++ b/bin/Racer.pck @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:8d60c16d833760ae58af1c8494f199655af2b727b20a8888d0dc37a3a4c1b3d7 -size 45537440 +oid sha256:e754122956bdd416b4aec64ef41fdecabadb2a5e62b4e8cd6d98cdecc0967fc5 +size 44529936 diff --git a/bin/Racer.sh b/bin/Racer.sh new file mode 100644 index 0000000000000000000000000000000000000000..f5138f41e86b019699ca00f9d7334551d43c5fa9 --- /dev/null +++ b/bin/Racer.sh @@ -0,0 +1,4 @@ +#!/bin/sh +echo -ne '\033c\033]0;GodotRacer\a' +base_path="$(dirname "$(realpath "$0")")" +"$base_path/Racer.x86_64" "$@" diff --git a/bin/Racer.x86_64 b/bin/Racer.x86_64 index 66dfca4a03ce78e7e9a5bc4e242a0368d3bc1992..2e5a23c5eccdacc2dd1d161e3b8b4029645fed92 100644 --- a/bin/Racer.x86_64 +++ b/bin/Racer.x86_64 @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:ed68d749a5bc6e3e78fdf5764fcbf5493e8b9ebdb629f470be3c64c1f205b58f -size 64865512 +oid sha256:dda38dcc9dacc4e8d58d79f88a109bd36a30d97af1400a46b9d9d4e24278dbfe +size 70085064 diff --git a/export_presets.cfg b/export_presets.cfg index d56aa5aedfea2fbf90a8ca0b76d3e95ce72c3b1e..d699dd1497beca2e7fd8f49a3d0ba7d4ece5c771 100644 --- a/export_presets.cfg +++ b/export_presets.cfg @@ -3,16 +3,16 @@ name="Linux/X11" platform="Linux/X11" runnable=true +dedicated_server=false custom_features="" export_filter="all_resources" include_filter="" exclude_filter="" -export_path="../../racer.x86_64" +export_path="" encryption_include_filters="" encryption_exclude_filters="" encrypt_pck=false encrypt_directory=false -script_export_mode=1 script_encryption_key="" [preset.0.options] @@ -21,18 +21,30 @@ custom_template/debug="" custom_template/release="" debug/export_console_script=1 binary_format/embed_pck=false -texture_format/bptc=false +texture_format/bptc=true texture_format/s3tc=true texture_format/etc=false texture_format/etc2=false -texture_format/no_bptc_fallbacks=true binary_format/architecture="x86_64" +ssh_remote_deploy/enabled=false +ssh_remote_deploy/host="user@host_ip" +ssh_remote_deploy/port="22" +ssh_remote_deploy/extra_args_ssh="" +ssh_remote_deploy/extra_args_scp="" +ssh_remote_deploy/run_script="#!/usr/bin/env bash +export DISPLAY=:0 +unzip -o -q \"{temp_dir}/{archive_name}\" -d \"{temp_dir}\" +\"{temp_dir}/{exe_name}\" {cmd_args}" +ssh_remote_deploy/cleanup_script="#!/usr/bin/env bash +kill $(pgrep -x -f \"{temp_dir}/{exe_name} {cmd_args}\") +rm -rf \"{temp_dir}\"" [preset.1] name="Windows Desktop" platform="Windows Desktop" runnable=true +dedicated_server=false custom_features="" export_filter="all_resources" include_filter="" @@ -42,7 +54,6 @@ encryption_include_filters="" encryption_exclude_filters="" encrypt_pck=false encrypt_directory=false -script_export_mode=1 script_encryption_key="" [preset.1.options] @@ -51,11 +62,10 @@ custom_template/debug="" custom_template/release="" debug/export_console_script=1 binary_format/embed_pck=false -texture_format/bptc=false +texture_format/bptc=true texture_format/s3tc=true texture_format/etc=false texture_format/etc2=false -texture_format/no_bptc_fallbacks=true binary_format/architecture="x86_64" codesign/enable=false codesign/identity_type=0 @@ -68,6 +78,8 @@ codesign/description="" codesign/custom_options=PackedStringArray() application/modify_resources=true application/icon="" +application/console_wrapper_icon="" +application/icon_interpolation=4 application/file_version="" application/product_version="" application/company_name="" @@ -75,3 +87,20 @@ application/product_name="" application/file_description="" application/copyright="" application/trademarks="" +ssh_remote_deploy/enabled=false +ssh_remote_deploy/host="user@host_ip" +ssh_remote_deploy/port="22" +ssh_remote_deploy/extra_args_ssh="" +ssh_remote_deploy/extra_args_scp="" +ssh_remote_deploy/run_script="Expand-Archive -LiteralPath '{temp_dir}\\{archive_name}' -DestinationPath '{temp_dir}' +$action = New-ScheduledTaskAction -Execute '{temp_dir}\\{exe_name}' -Argument '{cmd_args}' +$trigger = New-ScheduledTaskTrigger -Once -At 00:00 +$settings = New-ScheduledTaskSettingsSet +$task = New-ScheduledTask -Action $action -Trigger $trigger -Settings $settings +Register-ScheduledTask godot_remote_debug -InputObject $task -Force:$true +Start-ScheduledTask -TaskName godot_remote_debug +while (Get-ScheduledTask -TaskName godot_remote_debug | ? State -eq running) { Start-Sleep -Milliseconds 100 } +Unregister-ScheduledTask -TaskName godot_remote_debug -Confirm:$false -ErrorAction:SilentlyContinue" +ssh_remote_deploy/cleanup_script="Stop-ScheduledTask -TaskName godot_remote_debug -ErrorAction:SilentlyContinue +Unregister-ScheduledTask -TaskName godot_remote_debug -Confirm:$false -ErrorAction:SilentlyContinue +Remove-Item -Recurse -Force '{temp_dir}'" diff --git a/icon.png.import b/icon.png.import index 984def1b5c33be79e8a8362cf7261bc3f00853db..1cd30214c39864ad47ca88bcdecfa397a1b668a1 100644 --- a/icon.png.import +++ b/icon.png.import @@ -4,23 +4,22 @@ importer="texture" type="CompressedTexture2D" uid="uid://c2b1itefw3egr" path.s3tc="res://.godot/imported/icon.png-487276ed1e3a0c39cad0279d744ee560.s3tc.ctex" -path.etc2="res://.godot/imported/icon.png-487276ed1e3a0c39cad0279d744ee560.etc2.ctex" metadata={ -"imported_formats": ["s3tc", "etc2"], +"imported_formats": ["s3tc_bptc"], "vram_texture": true } [deps] source_file="res://icon.png" -dest_files=["res://.godot/imported/icon.png-487276ed1e3a0c39cad0279d744ee560.s3tc.ctex", "res://.godot/imported/icon.png-487276ed1e3a0c39cad0279d744ee560.etc2.ctex"] +dest_files=["res://.godot/imported/icon.png-487276ed1e3a0c39cad0279d744ee560.s3tc.ctex"] [params] compress/mode=2 +compress/high_quality=false compress/lossy_quality=0.7 compress/hdr_compression=1 -compress/bptc_ldr=0 compress/normal_map=0 compress/channel_pack=0 mipmaps/generate=true diff --git a/lilienstein_1k.hdr.import b/lilienstein_1k.hdr.import index f09b4b164e8d798f481826f56e5ae0f864a4e763..19f738942d97f397caf1fe4d4193d5a7b09b188e 100644 --- a/lilienstein_1k.hdr.import +++ b/lilienstein_1k.hdr.import @@ -16,9 +16,9 @@ dest_files=["res://.godot/imported/lilienstein_1k.hdr-87ab376bc888e711d1864b7169 [params] compress/mode=0 +compress/high_quality=false compress/lossy_quality=0.7 compress/hdr_compression=1 -compress/bptc_ldr=0 compress/normal_map=0 compress/channel_pack=0 mipmaps/generate=false diff --git a/project.godot b/project.godot index a6f222219eace56c44deb7a5cc5f36af5dbf2061..3ec62560ed6aa4c9acecf719fd26ba173c7c86ab 100644 --- a/project.godot +++ b/project.godot @@ -8,58 +8,6 @@ config_version=5 -_global_script_classes=[{ -"base": "Node2D", -"class": &"ISensor2D", -"language": &"GDScript", -"path": "res://addons/godot_rl_agents/sensors/sensors_2d/ISensor2D.gd" -}, { -"base": "Node3D", -"class": &"ISensor3D", -"language": &"GDScript", -"path": "res://addons/godot_rl_agents/sensors/sensors_3d/ISensor3D.gd" -}, { -"base": "VehicleBody3D", -"class": &"Player", -"language": &"GDScript", -"path": "res://vehicle.gd" -}, { -"base": "Node3D", -"class": &"RGBCameraSensor3D", -"language": &"GDScript", -"path": "res://addons/godot_rl_agents/sensors/sensors_3d/RGBCameraSensor3D.gd" -}, { -"base": "ISensor3D", -"class": &"RayCastSensor3D", -"language": &"GDScript", -"path": "res://addons/godot_rl_agents/sensors/sensors_3d/RaycastSensor3D.gd" -}, { -"base": "ISensor2D", -"class": &"RaycastSensor2D", -"language": &"GDScript", -"path": "res://addons/godot_rl_agents/sensors/sensors_2d/RaycastSensor2D.gd" -}, { -"base": "Control", -"class": &"UICountDown", -"language": &"GDScript", -"path": "res://UICountDown.gd" -}, { -"base": "Node", -"class": &"Utils", -"language": &"GDScript", -"path": "res://utils.gd" -}] -_global_script_class_icons={ -"ISensor2D": "", -"ISensor3D": "", -"Player": "", -"RGBCameraSensor3D": "", -"RayCastSensor3D": "", -"RaycastSensor2D": "", -"UICountDown": "", -"Utils": "" -} - [application] config/name="GodotRacer" @@ -72,6 +20,10 @@ config/icon="res://icon.png" GameManager="*res://managers/game_manager.gd" EventManager="*res://managers/event_manager.gd" +[dotnet] + +project/assembly_name="GodotRacer" + [editor_plugins] enabled=PackedStringArray() @@ -84,47 +36,47 @@ import/blender/enabled=false turn_left={ "deadzone": 0.5, -"events": [Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":0,"window_id":0,"alt_pressed":false,"shift_pressed":false,"ctrl_pressed":false,"meta_pressed":false,"pressed":false,"keycode":0,"physical_keycode":65,"unicode":0,"echo":false,"script":null) +"events": [Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":0,"window_id":0,"alt_pressed":false,"shift_pressed":false,"ctrl_pressed":false,"meta_pressed":false,"pressed":false,"keycode":0,"physical_keycode":65,"key_label":0,"unicode":0,"echo":false,"script":null) ] } turn_right={ "deadzone": 0.5, -"events": [Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":0,"window_id":0,"alt_pressed":false,"shift_pressed":false,"ctrl_pressed":false,"meta_pressed":false,"pressed":false,"keycode":0,"physical_keycode":68,"unicode":0,"echo":false,"script":null) +"events": [Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":0,"window_id":0,"alt_pressed":false,"shift_pressed":false,"ctrl_pressed":false,"meta_pressed":false,"pressed":false,"keycode":0,"physical_keycode":68,"key_label":0,"unicode":0,"echo":false,"script":null) ] } accelerate={ "deadzone": 0.5, -"events": [Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":0,"window_id":0,"alt_pressed":false,"shift_pressed":false,"ctrl_pressed":false,"meta_pressed":false,"pressed":false,"keycode":0,"physical_keycode":87,"unicode":0,"echo":false,"script":null) +"events": [Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":0,"window_id":0,"alt_pressed":false,"shift_pressed":false,"ctrl_pressed":false,"meta_pressed":false,"pressed":false,"keycode":0,"physical_keycode":87,"key_label":0,"unicode":0,"echo":false,"script":null) ] } reverse={ "deadzone": 0.5, -"events": [Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":0,"window_id":0,"alt_pressed":false,"shift_pressed":false,"ctrl_pressed":false,"meta_pressed":false,"pressed":false,"keycode":0,"physical_keycode":83,"unicode":0,"echo":false,"script":null) +"events": [Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":0,"window_id":0,"alt_pressed":false,"shift_pressed":false,"ctrl_pressed":false,"meta_pressed":false,"pressed":false,"keycode":0,"physical_keycode":83,"key_label":0,"unicode":0,"echo":false,"script":null) ] } next_player={ "deadzone": 0.5, -"events": [Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":0,"window_id":0,"alt_pressed":false,"shift_pressed":false,"ctrl_pressed":false,"meta_pressed":false,"pressed":false,"keycode":0,"physical_keycode":4194321,"unicode":0,"echo":false,"script":null) +"events": [Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":0,"window_id":0,"alt_pressed":false,"shift_pressed":false,"ctrl_pressed":false,"meta_pressed":false,"pressed":false,"keycode":0,"physical_keycode":4194321,"key_label":0,"unicode":0,"echo":false,"script":null) ] } previous_player={ "deadzone": 0.5, -"events": [Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":0,"window_id":0,"alt_pressed":false,"shift_pressed":false,"ctrl_pressed":false,"meta_pressed":false,"pressed":false,"keycode":0,"physical_keycode":4194319,"unicode":0,"echo":false,"script":null) +"events": [Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":0,"window_id":0,"alt_pressed":false,"shift_pressed":false,"ctrl_pressed":false,"meta_pressed":false,"pressed":false,"keycode":0,"physical_keycode":4194319,"key_label":0,"unicode":0,"echo":false,"script":null) ] } toggle_flycam={ "deadzone": 0.5, -"events": [Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":0,"window_id":0,"alt_pressed":false,"shift_pressed":false,"ctrl_pressed":false,"meta_pressed":false,"pressed":false,"keycode":0,"physical_keycode":67,"unicode":0,"echo":false,"script":null) +"events": [Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":0,"window_id":0,"alt_pressed":false,"shift_pressed":false,"ctrl_pressed":false,"meta_pressed":false,"pressed":false,"keycode":0,"physical_keycode":67,"key_label":0,"unicode":0,"echo":false,"script":null) ] } cam_up={ "deadzone": 0.5, -"events": [Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":0,"window_id":0,"alt_pressed":false,"shift_pressed":false,"ctrl_pressed":false,"meta_pressed":false,"pressed":false,"keycode":0,"physical_keycode":32,"unicode":0,"echo":false,"script":null) +"events": [Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":0,"window_id":0,"alt_pressed":false,"shift_pressed":false,"ctrl_pressed":false,"meta_pressed":false,"pressed":false,"keycode":0,"physical_keycode":32,"key_label":0,"unicode":0,"echo":false,"script":null) ] } cam_down={ "deadzone": 0.5, -"events": [Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":0,"window_id":0,"alt_pressed":false,"shift_pressed":false,"ctrl_pressed":false,"meta_pressed":false,"pressed":false,"keycode":0,"physical_keycode":4194326,"unicode":0,"echo":false,"script":null) +"events": [Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":0,"window_id":0,"alt_pressed":false,"shift_pressed":false,"ctrl_pressed":false,"meta_pressed":false,"pressed":false,"keycode":0,"physical_keycode":4194326,"key_label":0,"unicode":0,"echo":false,"script":null) ] }