diff --git a/Krom/Krom b/Krom/Krom old mode 100755 new mode 100644 diff --git a/leenkx/Sources/leenkx/logicnode/SetLookAtRotationNode.hx b/leenkx/Sources/leenkx/logicnode/SetLookAtRotationNode.hx deleted file mode 100644 index 15fb2d7..0000000 --- a/leenkx/Sources/leenkx/logicnode/SetLookAtRotationNode.hx +++ /dev/null @@ -1,190 +0,0 @@ -package leenkx.logicnode; - -import iron.math.Vec4; -import iron.math.Quat; -import iron.math.Mat4; -import iron.object.Object; - -class SetLookAtRotationNode extends LogicNode { - - public var property0: String; // Axis to align - public var property1: String; // Use vector for target (true/false) - public var property2: String; // Use vector for source (true/false) - public var property3: String; // Damping value (backward compatibility, now input socket) - public var property4: String; // Disable rotation on aligning axis (true/false) - - // Store the calculated rotation for output - var calculatedRotation: Quat = null; - // Store the previous rotation for smooth interpolation - var previousRotation: Quat = null; - - public function new(tree: LogicTree) { - super(tree); - previousRotation = new Quat(); - } - - override function run(from: Int): Void { - // Determine if we're using a vector or an object as source - var useSourceVector: Bool = property2 == "true"; - var objectToUse: Object = null; - var objectLoc: Vec4 = null; - - if (useSourceVector) { - // Use tree.object as the object to rotate - objectToUse = tree.object; - if (objectToUse == null) { - runOutput(0); - return; - } - - // Get the source location directly - objectLoc = inputs[1].get(); - if (objectLoc == null) { - runOutput(0); - return; - } - } else { - // Get the source object (or fallback to tree.object) - objectToUse = (inputs.length > 1 && inputs[1] != null) ? inputs[1].get() : tree.object; - if (objectToUse == null) { - runOutput(0); - return; - } - - // Get source object's position - objectLoc = objectToUse.transform.loc; - } - - // Determine if we're using a vector or an object as target - var useTargetVector: Bool = property1 == "true"; - var targetLoc: Vec4 = null; - - if (useTargetVector) { - // Get the target location directly - targetLoc = inputs[2].get(); - if (targetLoc == null) { - runOutput(0); - return; - } - } else { - // Get the target object - var targetObject: Object = inputs[2].get(); - if (targetObject == null) { - runOutput(0); - return; - } - - // Get target object's position - targetLoc = targetObject.transform.loc; - } - - // Calculate direction to target - var direction = new Vec4( - targetLoc.x - objectLoc.x, - targetLoc.y - objectLoc.y, - targetLoc.z - objectLoc.z - ); - direction.normalize(); - - // Calculate target rotation based on selected axis - calculatedRotation = new Quat(); - switch (property0) { - case "X": - calculatedRotation.fromTo(new Vec4(1, 0, 0), direction); - case "-X": - calculatedRotation.fromTo(new Vec4(-1, 0, 0), direction); - case "Y": - calculatedRotation.fromTo(new Vec4(0, 1, 0), direction); - case "-Y": - calculatedRotation.fromTo(new Vec4(0, -1, 0), direction); - case "Z": - calculatedRotation.fromTo(new Vec4(0, 0, 1), direction); - case "-Z": - calculatedRotation.fromTo(new Vec4(0, 0, -1), direction); - } - - // If disable rotation on aligning axis is enabled, constrain the target rotation - if (property4 == "true") { - // Apply constraint to the target rotation BEFORE damping to avoid jiggling - var eulerAngles = calculatedRotation.toEulerOrdered("XYZ"); - - // Set the rotation around the selected axis to 0 - switch (property0) { - case "X", "-X": - eulerAngles.x = 0.0; - case "Y", "-Y": - eulerAngles.y = 0.0; - case "Z", "-Z": - eulerAngles.z = 0.0; - } - - // Convert back to quaternion - calculatedRotation.fromEulerOrdered(eulerAngles, "XYZ"); - } - - // Apply rotation with damping - var dampingValue: Float = 0.0; - - // Try to get damping from input socket first (index 3), fallback to property - if (inputs.length > 3 && inputs[3] != null) { - var dampingInput: Dynamic = inputs[3].get(); - if (dampingInput != null) { - dampingValue = dampingInput; - } - } else { - // Fallback to property for backward compatibility - dampingValue = Std.parseFloat(property3); - } - - if (dampingValue > 0.0) { - // Create a fixed interpolation rate that never reaches exactly 1.0 - // Higher damping = slower rotation (smaller step) - var step = Math.max(0.001, (1.0 - dampingValue) * 0.2); // 0.001 to 0.2 range - - // Get current rotation as quaternion - var currentRot = new Quat().setFrom(objectToUse.transform.rot); - - // Calculate the difference between current and target rotation - var diffQuat = new Quat(); - // q1 * inverse(q2) gives the rotation from q2 to q1 - var invCurrent = new Quat().setFrom(currentRot); - invCurrent.x = -invCurrent.x; - invCurrent.y = -invCurrent.y; - invCurrent.z = -invCurrent.z; - diffQuat.multquats(calculatedRotation, invCurrent); - - // Convert to axis-angle representation - var axis = new Vec4(); - var angle = diffQuat.toAxisAngle(axis); - - // Apply only a portion of this rotation (step) - var partialAngle = angle * step; - - // Create partial rotation quaternion - var partialRot = new Quat().fromAxisAngle(axis, partialAngle); - - // Apply this partial rotation to current - var newRot = new Quat(); - newRot.multquats(partialRot, currentRot); - - // Apply the new rotation - objectToUse.transform.rot.setFrom(newRot); - } else { - // No damping, apply instant rotation - objectToUse.transform.rot.setFrom(calculatedRotation); - } - - objectToUse.transform.buildMatrix(); - - runOutput(0); - } - - // Getter method for output sockets - override function get(from: Int): Dynamic { - // Output index 1 is the rotation socket (global rotation) - if (from == 1) { - return calculatedRotation; - } - return null; - } -} diff --git a/leenkx/blender/__pycache__/start.cpython-311.pyc b/leenkx/blender/__pycache__/start.cpython-311.pyc deleted file mode 100644 index 76e6abe..0000000 Binary files a/leenkx/blender/__pycache__/start.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/__pycache__/__init__.cpython-311.pyc b/leenkx/blender/lnx/__pycache__/__init__.cpython-311.pyc deleted file mode 100644 index 594b3b5..0000000 Binary files a/leenkx/blender/lnx/__pycache__/__init__.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/__pycache__/api.cpython-311.pyc b/leenkx/blender/lnx/__pycache__/api.cpython-311.pyc deleted file mode 100644 index 9e62be7..0000000 Binary files a/leenkx/blender/lnx/__pycache__/api.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/__pycache__/assets.cpython-311.pyc b/leenkx/blender/lnx/__pycache__/assets.cpython-311.pyc deleted file mode 100644 index 4f52f19..0000000 Binary files a/leenkx/blender/lnx/__pycache__/assets.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/__pycache__/exporter.cpython-311.pyc b/leenkx/blender/lnx/__pycache__/exporter.cpython-311.pyc deleted file mode 100644 index 3e1a134..0000000 Binary files a/leenkx/blender/lnx/__pycache__/exporter.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/__pycache__/exporter_opt.cpython-311.pyc b/leenkx/blender/lnx/__pycache__/exporter_opt.cpython-311.pyc deleted file mode 100644 index 9f2f787..0000000 Binary files a/leenkx/blender/lnx/__pycache__/exporter_opt.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/__pycache__/handlers.cpython-311.pyc b/leenkx/blender/lnx/__pycache__/handlers.cpython-311.pyc deleted file mode 100644 index f1f49b5..0000000 Binary files a/leenkx/blender/lnx/__pycache__/handlers.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/__pycache__/keymap.cpython-311.pyc b/leenkx/blender/lnx/__pycache__/keymap.cpython-311.pyc deleted file mode 100644 index aa48693..0000000 Binary files a/leenkx/blender/lnx/__pycache__/keymap.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/__pycache__/live_patch.cpython-311.pyc b/leenkx/blender/lnx/__pycache__/live_patch.cpython-311.pyc deleted file mode 100644 index 253a4f7..0000000 Binary files a/leenkx/blender/lnx/__pycache__/live_patch.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/__pycache__/log.cpython-311.pyc b/leenkx/blender/lnx/__pycache__/log.cpython-311.pyc deleted file mode 100644 index ab44e99..0000000 Binary files a/leenkx/blender/lnx/__pycache__/log.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/__pycache__/make.cpython-311.pyc b/leenkx/blender/lnx/__pycache__/make.cpython-311.pyc deleted file mode 100644 index 17de276..0000000 Binary files a/leenkx/blender/lnx/__pycache__/make.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/__pycache__/make_logic.cpython-311.pyc b/leenkx/blender/lnx/__pycache__/make_logic.cpython-311.pyc deleted file mode 100644 index da91d99..0000000 Binary files a/leenkx/blender/lnx/__pycache__/make_logic.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/__pycache__/make_renderpath.cpython-311.pyc b/leenkx/blender/lnx/__pycache__/make_renderpath.cpython-311.pyc deleted file mode 100644 index 293a1d5..0000000 Binary files a/leenkx/blender/lnx/__pycache__/make_renderpath.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/__pycache__/make_state.cpython-311.pyc b/leenkx/blender/lnx/__pycache__/make_state.cpython-311.pyc deleted file mode 100644 index cb3b01c..0000000 Binary files a/leenkx/blender/lnx/__pycache__/make_state.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/__pycache__/make_world.cpython-311.pyc b/leenkx/blender/lnx/__pycache__/make_world.cpython-311.pyc deleted file mode 100644 index 1444b2a..0000000 Binary files a/leenkx/blender/lnx/__pycache__/make_world.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/__pycache__/node_utils.cpython-311.pyc b/leenkx/blender/lnx/__pycache__/node_utils.cpython-311.pyc deleted file mode 100644 index 7dd7edb..0000000 Binary files a/leenkx/blender/lnx/__pycache__/node_utils.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/__pycache__/nodes_logic.cpython-311.pyc b/leenkx/blender/lnx/__pycache__/nodes_logic.cpython-311.pyc deleted file mode 100644 index 93d0f1c..0000000 Binary files a/leenkx/blender/lnx/__pycache__/nodes_logic.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/__pycache__/nodes_material.cpython-311.pyc b/leenkx/blender/lnx/__pycache__/nodes_material.cpython-311.pyc deleted file mode 100644 index 48b7958..0000000 Binary files a/leenkx/blender/lnx/__pycache__/nodes_material.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/__pycache__/profiler.cpython-311.pyc b/leenkx/blender/lnx/__pycache__/profiler.cpython-311.pyc deleted file mode 100644 index 2f68ea4..0000000 Binary files a/leenkx/blender/lnx/__pycache__/profiler.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/__pycache__/props.cpython-311.pyc b/leenkx/blender/lnx/__pycache__/props.cpython-311.pyc deleted file mode 100644 index fa13809..0000000 Binary files a/leenkx/blender/lnx/__pycache__/props.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/__pycache__/props_action.cpython-311.pyc b/leenkx/blender/lnx/__pycache__/props_action.cpython-311.pyc deleted file mode 100644 index 39e9200..0000000 Binary files a/leenkx/blender/lnx/__pycache__/props_action.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/__pycache__/props_bake.cpython-311.pyc b/leenkx/blender/lnx/__pycache__/props_bake.cpython-311.pyc deleted file mode 100644 index 38d4d2b..0000000 Binary files a/leenkx/blender/lnx/__pycache__/props_bake.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/__pycache__/props_camera_render_filter.cpython-311.pyc b/leenkx/blender/lnx/__pycache__/props_camera_render_filter.cpython-311.pyc deleted file mode 100644 index 59497b5..0000000 Binary files a/leenkx/blender/lnx/__pycache__/props_camera_render_filter.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/__pycache__/props_collision_filter_mask.cpython-311.pyc b/leenkx/blender/lnx/__pycache__/props_collision_filter_mask.cpython-311.pyc deleted file mode 100644 index fce14c3..0000000 Binary files a/leenkx/blender/lnx/__pycache__/props_collision_filter_mask.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/__pycache__/props_exporter.cpython-311.pyc b/leenkx/blender/lnx/__pycache__/props_exporter.cpython-311.pyc deleted file mode 100644 index 9fe8b80..0000000 Binary files a/leenkx/blender/lnx/__pycache__/props_exporter.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/__pycache__/props_lod.cpython-311.pyc b/leenkx/blender/lnx/__pycache__/props_lod.cpython-311.pyc deleted file mode 100644 index 80ab5eb..0000000 Binary files a/leenkx/blender/lnx/__pycache__/props_lod.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/__pycache__/props_properties.cpython-311.pyc b/leenkx/blender/lnx/__pycache__/props_properties.cpython-311.pyc deleted file mode 100644 index a562c77..0000000 Binary files a/leenkx/blender/lnx/__pycache__/props_properties.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/__pycache__/props_renderpath.cpython-311.pyc b/leenkx/blender/lnx/__pycache__/props_renderpath.cpython-311.pyc deleted file mode 100644 index 48e0a7e..0000000 Binary files a/leenkx/blender/lnx/__pycache__/props_renderpath.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/__pycache__/props_tilesheet.cpython-311.pyc b/leenkx/blender/lnx/__pycache__/props_tilesheet.cpython-311.pyc deleted file mode 100644 index f4aff1b..0000000 Binary files a/leenkx/blender/lnx/__pycache__/props_tilesheet.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/__pycache__/props_traits.cpython-311.pyc b/leenkx/blender/lnx/__pycache__/props_traits.cpython-311.pyc deleted file mode 100644 index bbbb869..0000000 Binary files a/leenkx/blender/lnx/__pycache__/props_traits.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/__pycache__/props_traits_props.cpython-311.pyc b/leenkx/blender/lnx/__pycache__/props_traits_props.cpython-311.pyc deleted file mode 100644 index 478b39f..0000000 Binary files a/leenkx/blender/lnx/__pycache__/props_traits_props.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/__pycache__/props_ui.cpython-311.pyc b/leenkx/blender/lnx/__pycache__/props_ui.cpython-311.pyc deleted file mode 100644 index fffbe86..0000000 Binary files a/leenkx/blender/lnx/__pycache__/props_ui.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/__pycache__/ui_icons.cpython-311.pyc b/leenkx/blender/lnx/__pycache__/ui_icons.cpython-311.pyc deleted file mode 100644 index 65b7f66..0000000 Binary files a/leenkx/blender/lnx/__pycache__/ui_icons.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/__pycache__/utils.cpython-311.pyc b/leenkx/blender/lnx/__pycache__/utils.cpython-311.pyc deleted file mode 100644 index d39ad82..0000000 Binary files a/leenkx/blender/lnx/__pycache__/utils.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/__pycache__/utils_vs.cpython-311.pyc b/leenkx/blender/lnx/__pycache__/utils_vs.cpython-311.pyc deleted file mode 100644 index 9bd73ae..0000000 Binary files a/leenkx/blender/lnx/__pycache__/utils_vs.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/__pycache__/write_data.cpython-311.pyc b/leenkx/blender/lnx/__pycache__/write_data.cpython-311.pyc deleted file mode 100644 index efe7d7b..0000000 Binary files a/leenkx/blender/lnx/__pycache__/write_data.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/__pycache__/write_probes.cpython-311.pyc b/leenkx/blender/lnx/__pycache__/write_probes.cpython-311.pyc deleted file mode 100644 index d31c8e9..0000000 Binary files a/leenkx/blender/lnx/__pycache__/write_probes.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/lib/__pycache__/__init__.cpython-311.pyc b/leenkx/blender/lnx/lib/__pycache__/__init__.cpython-311.pyc deleted file mode 100644 index 8c5b2bd..0000000 Binary files a/leenkx/blender/lnx/lib/__pycache__/__init__.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/lib/__pycache__/lnxpack.cpython-311.pyc b/leenkx/blender/lnx/lib/__pycache__/lnxpack.cpython-311.pyc deleted file mode 100644 index 250ebe4..0000000 Binary files a/leenkx/blender/lnx/lib/__pycache__/lnxpack.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/lib/__pycache__/lz4.cpython-311.pyc b/leenkx/blender/lnx/lib/__pycache__/lz4.cpython-311.pyc deleted file mode 100644 index 8c1321d..0000000 Binary files a/leenkx/blender/lnx/lib/__pycache__/lz4.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/lib/__pycache__/make_datas.cpython-311.pyc b/leenkx/blender/lnx/lib/__pycache__/make_datas.cpython-311.pyc deleted file mode 100644 index b7876a7..0000000 Binary files a/leenkx/blender/lnx/lib/__pycache__/make_datas.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/lib/__pycache__/server.cpython-311.pyc b/leenkx/blender/lnx/lib/__pycache__/server.cpython-311.pyc deleted file mode 100644 index 55ce83a..0000000 Binary files a/leenkx/blender/lnx/lib/__pycache__/server.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/lightmapper/__pycache__/__init__.cpython-311.pyc b/leenkx/blender/lnx/lightmapper/__pycache__/__init__.cpython-311.pyc deleted file mode 100644 index 5218cc3..0000000 Binary files a/leenkx/blender/lnx/lightmapper/__pycache__/__init__.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/lightmapper/network/__pycache__/client.cpython-311.pyc b/leenkx/blender/lnx/lightmapper/network/__pycache__/client.cpython-311.pyc deleted file mode 100644 index ada0793..0000000 Binary files a/leenkx/blender/lnx/lightmapper/network/__pycache__/client.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/lightmapper/network/__pycache__/server.cpython-311.pyc b/leenkx/blender/lnx/lightmapper/network/__pycache__/server.cpython-311.pyc deleted file mode 100644 index c29a85e..0000000 Binary files a/leenkx/blender/lnx/lightmapper/network/__pycache__/server.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/lightmapper/operators/__pycache__/__init__.cpython-311.pyc b/leenkx/blender/lnx/lightmapper/operators/__pycache__/__init__.cpython-311.pyc deleted file mode 100644 index fa73fbf..0000000 Binary files a/leenkx/blender/lnx/lightmapper/operators/__pycache__/__init__.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/lightmapper/operators/__pycache__/imagetools.cpython-311.pyc b/leenkx/blender/lnx/lightmapper/operators/__pycache__/imagetools.cpython-311.pyc deleted file mode 100644 index ad35a54..0000000 Binary files a/leenkx/blender/lnx/lightmapper/operators/__pycache__/imagetools.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/lightmapper/operators/__pycache__/installopencv.cpython-311.pyc b/leenkx/blender/lnx/lightmapper/operators/__pycache__/installopencv.cpython-311.pyc deleted file mode 100644 index 9f7a299..0000000 Binary files a/leenkx/blender/lnx/lightmapper/operators/__pycache__/installopencv.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/lightmapper/operators/__pycache__/tlm.cpython-311.pyc b/leenkx/blender/lnx/lightmapper/operators/__pycache__/tlm.cpython-311.pyc deleted file mode 100644 index 48ed526..0000000 Binary files a/leenkx/blender/lnx/lightmapper/operators/__pycache__/tlm.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/lightmapper/panels/__pycache__/__init__.cpython-311.pyc b/leenkx/blender/lnx/lightmapper/panels/__pycache__/__init__.cpython-311.pyc deleted file mode 100644 index 2be7fbf..0000000 Binary files a/leenkx/blender/lnx/lightmapper/panels/__pycache__/__init__.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/lightmapper/panels/__pycache__/scene.cpython-311.pyc b/leenkx/blender/lnx/lightmapper/panels/__pycache__/scene.cpython-311.pyc deleted file mode 100644 index 4954395..0000000 Binary files a/leenkx/blender/lnx/lightmapper/panels/__pycache__/scene.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/lightmapper/properties/__pycache__/__init__.cpython-311.pyc b/leenkx/blender/lnx/lightmapper/properties/__pycache__/__init__.cpython-311.pyc deleted file mode 100644 index 1f8c768..0000000 Binary files a/leenkx/blender/lnx/lightmapper/properties/__pycache__/__init__.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/lightmapper/properties/__pycache__/atlas.cpython-311.pyc b/leenkx/blender/lnx/lightmapper/properties/__pycache__/atlas.cpython-311.pyc deleted file mode 100644 index 6018cbc..0000000 Binary files a/leenkx/blender/lnx/lightmapper/properties/__pycache__/atlas.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/lightmapper/properties/__pycache__/image.cpython-311.pyc b/leenkx/blender/lnx/lightmapper/properties/__pycache__/image.cpython-311.pyc deleted file mode 100644 index 01f32e4..0000000 Binary files a/leenkx/blender/lnx/lightmapper/properties/__pycache__/image.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/lightmapper/properties/__pycache__/object.cpython-311.pyc b/leenkx/blender/lnx/lightmapper/properties/__pycache__/object.cpython-311.pyc deleted file mode 100644 index eba0667..0000000 Binary files a/leenkx/blender/lnx/lightmapper/properties/__pycache__/object.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/lightmapper/properties/__pycache__/scene.cpython-311.pyc b/leenkx/blender/lnx/lightmapper/properties/__pycache__/scene.cpython-311.pyc deleted file mode 100644 index 168265b..0000000 Binary files a/leenkx/blender/lnx/lightmapper/properties/__pycache__/scene.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/lightmapper/properties/denoiser/__pycache__/oidn.cpython-311.pyc b/leenkx/blender/lnx/lightmapper/properties/denoiser/__pycache__/oidn.cpython-311.pyc deleted file mode 100644 index dbdf465..0000000 Binary files a/leenkx/blender/lnx/lightmapper/properties/denoiser/__pycache__/oidn.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/lightmapper/properties/denoiser/__pycache__/optix.cpython-311.pyc b/leenkx/blender/lnx/lightmapper/properties/denoiser/__pycache__/optix.cpython-311.pyc deleted file mode 100644 index 23b1618..0000000 Binary files a/leenkx/blender/lnx/lightmapper/properties/denoiser/__pycache__/optix.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/lightmapper/properties/renderer/__pycache__/cycles.cpython-311.pyc b/leenkx/blender/lnx/lightmapper/properties/renderer/__pycache__/cycles.cpython-311.pyc deleted file mode 100644 index 5ea1964..0000000 Binary files a/leenkx/blender/lnx/lightmapper/properties/renderer/__pycache__/cycles.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/lightmapper/properties/renderer/__pycache__/luxcorerender.cpython-311.pyc b/leenkx/blender/lnx/lightmapper/properties/renderer/__pycache__/luxcorerender.cpython-311.pyc deleted file mode 100644 index 8732d57..0000000 Binary files a/leenkx/blender/lnx/lightmapper/properties/renderer/__pycache__/luxcorerender.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/lightmapper/properties/renderer/__pycache__/octanerender.cpython-311.pyc b/leenkx/blender/lnx/lightmapper/properties/renderer/__pycache__/octanerender.cpython-311.pyc deleted file mode 100644 index 8affc89..0000000 Binary files a/leenkx/blender/lnx/lightmapper/properties/renderer/__pycache__/octanerender.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/lightmapper/utility/__pycache__/__init__.cpython-311.pyc b/leenkx/blender/lnx/lightmapper/utility/__pycache__/__init__.cpython-311.pyc deleted file mode 100644 index 2738b21..0000000 Binary files a/leenkx/blender/lnx/lightmapper/utility/__pycache__/__init__.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/lightmapper/utility/__pycache__/build.cpython-311.pyc b/leenkx/blender/lnx/lightmapper/utility/__pycache__/build.cpython-311.pyc deleted file mode 100644 index 4c6975d..0000000 Binary files a/leenkx/blender/lnx/lightmapper/utility/__pycache__/build.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/lightmapper/utility/__pycache__/encoding.cpython-311.pyc b/leenkx/blender/lnx/lightmapper/utility/__pycache__/encoding.cpython-311.pyc deleted file mode 100644 index 9574a86..0000000 Binary files a/leenkx/blender/lnx/lightmapper/utility/__pycache__/encoding.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/lightmapper/utility/__pycache__/icon.cpython-311.pyc b/leenkx/blender/lnx/lightmapper/utility/__pycache__/icon.cpython-311.pyc deleted file mode 100644 index 5eca42f..0000000 Binary files a/leenkx/blender/lnx/lightmapper/utility/__pycache__/icon.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/lightmapper/utility/__pycache__/log.cpython-311.pyc b/leenkx/blender/lnx/lightmapper/utility/__pycache__/log.cpython-311.pyc deleted file mode 100644 index cac2a8a..0000000 Binary files a/leenkx/blender/lnx/lightmapper/utility/__pycache__/log.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/lightmapper/utility/__pycache__/pack.cpython-311.pyc b/leenkx/blender/lnx/lightmapper/utility/__pycache__/pack.cpython-311.pyc deleted file mode 100644 index 8f32fae..0000000 Binary files a/leenkx/blender/lnx/lightmapper/utility/__pycache__/pack.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/lightmapper/utility/__pycache__/utility.cpython-311.pyc b/leenkx/blender/lnx/lightmapper/utility/__pycache__/utility.cpython-311.pyc deleted file mode 100644 index e80ea8a..0000000 Binary files a/leenkx/blender/lnx/lightmapper/utility/__pycache__/utility.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/lightmapper/utility/cycles/__pycache__/cache.cpython-311.pyc b/leenkx/blender/lnx/lightmapper/utility/cycles/__pycache__/cache.cpython-311.pyc deleted file mode 100644 index 01ac032..0000000 Binary files a/leenkx/blender/lnx/lightmapper/utility/cycles/__pycache__/cache.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/lightmapper/utility/cycles/__pycache__/lightmap.cpython-311.pyc b/leenkx/blender/lnx/lightmapper/utility/cycles/__pycache__/lightmap.cpython-311.pyc deleted file mode 100644 index 6512ce5..0000000 Binary files a/leenkx/blender/lnx/lightmapper/utility/cycles/__pycache__/lightmap.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/lightmapper/utility/cycles/__pycache__/nodes.cpython-311.pyc b/leenkx/blender/lnx/lightmapper/utility/cycles/__pycache__/nodes.cpython-311.pyc deleted file mode 100644 index 7fa6d5a..0000000 Binary files a/leenkx/blender/lnx/lightmapper/utility/cycles/__pycache__/nodes.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/lightmapper/utility/cycles/__pycache__/prepare.cpython-311.pyc b/leenkx/blender/lnx/lightmapper/utility/cycles/__pycache__/prepare.cpython-311.pyc deleted file mode 100644 index f27bb1f..0000000 Binary files a/leenkx/blender/lnx/lightmapper/utility/cycles/__pycache__/prepare.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/lightmapper/utility/denoiser/__pycache__/integrated.cpython-311.pyc b/leenkx/blender/lnx/lightmapper/utility/denoiser/__pycache__/integrated.cpython-311.pyc deleted file mode 100644 index 2f6bc62..0000000 Binary files a/leenkx/blender/lnx/lightmapper/utility/denoiser/__pycache__/integrated.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/lightmapper/utility/denoiser/__pycache__/oidn.cpython-311.pyc b/leenkx/blender/lnx/lightmapper/utility/denoiser/__pycache__/oidn.cpython-311.pyc deleted file mode 100644 index 4c626a4..0000000 Binary files a/leenkx/blender/lnx/lightmapper/utility/denoiser/__pycache__/oidn.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/lightmapper/utility/denoiser/__pycache__/optix.cpython-311.pyc b/leenkx/blender/lnx/lightmapper/utility/denoiser/__pycache__/optix.cpython-311.pyc deleted file mode 100644 index fd6cec8..0000000 Binary files a/leenkx/blender/lnx/lightmapper/utility/denoiser/__pycache__/optix.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/lightmapper/utility/filtering/__pycache__/opencv.cpython-311.pyc b/leenkx/blender/lnx/lightmapper/utility/filtering/__pycache__/opencv.cpython-311.pyc deleted file mode 100644 index 2cf33a4..0000000 Binary files a/leenkx/blender/lnx/lightmapper/utility/filtering/__pycache__/opencv.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/lightmapper/utility/gui/__pycache__/Viewport.cpython-311.pyc b/leenkx/blender/lnx/lightmapper/utility/gui/__pycache__/Viewport.cpython-311.pyc deleted file mode 100644 index 85a0def..0000000 Binary files a/leenkx/blender/lnx/lightmapper/utility/gui/__pycache__/Viewport.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/lightmapper/utility/luxcore/__pycache__/setup.cpython-311.pyc b/leenkx/blender/lnx/lightmapper/utility/luxcore/__pycache__/setup.cpython-311.pyc deleted file mode 100644 index e1581c9..0000000 Binary files a/leenkx/blender/lnx/lightmapper/utility/luxcore/__pycache__/setup.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/lightmapper/utility/octane/__pycache__/configure.cpython-311.pyc b/leenkx/blender/lnx/lightmapper/utility/octane/__pycache__/configure.cpython-311.pyc deleted file mode 100644 index 21306d8..0000000 Binary files a/leenkx/blender/lnx/lightmapper/utility/octane/__pycache__/configure.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/lightmapper/utility/octane/__pycache__/lightmap2.cpython-311.pyc b/leenkx/blender/lnx/lightmapper/utility/octane/__pycache__/lightmap2.cpython-311.pyc deleted file mode 100644 index 08e27e1..0000000 Binary files a/leenkx/blender/lnx/lightmapper/utility/octane/__pycache__/lightmap2.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/lightmapper/utility/rectpack/__pycache__/__init__.cpython-311.pyc b/leenkx/blender/lnx/lightmapper/utility/rectpack/__pycache__/__init__.cpython-311.pyc deleted file mode 100644 index d59022b..0000000 Binary files a/leenkx/blender/lnx/lightmapper/utility/rectpack/__pycache__/__init__.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/lightmapper/utility/rectpack/__pycache__/geometry.cpython-311.pyc b/leenkx/blender/lnx/lightmapper/utility/rectpack/__pycache__/geometry.cpython-311.pyc deleted file mode 100644 index 22fadfb..0000000 Binary files a/leenkx/blender/lnx/lightmapper/utility/rectpack/__pycache__/geometry.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/lightmapper/utility/rectpack/__pycache__/guillotine.cpython-311.pyc b/leenkx/blender/lnx/lightmapper/utility/rectpack/__pycache__/guillotine.cpython-311.pyc deleted file mode 100644 index 2ba7c26..0000000 Binary files a/leenkx/blender/lnx/lightmapper/utility/rectpack/__pycache__/guillotine.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/lightmapper/utility/rectpack/__pycache__/maxrects.cpython-311.pyc b/leenkx/blender/lnx/lightmapper/utility/rectpack/__pycache__/maxrects.cpython-311.pyc deleted file mode 100644 index 4d8326f..0000000 Binary files a/leenkx/blender/lnx/lightmapper/utility/rectpack/__pycache__/maxrects.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/lightmapper/utility/rectpack/__pycache__/pack_algo.cpython-311.pyc b/leenkx/blender/lnx/lightmapper/utility/rectpack/__pycache__/pack_algo.cpython-311.pyc deleted file mode 100644 index af045dc..0000000 Binary files a/leenkx/blender/lnx/lightmapper/utility/rectpack/__pycache__/pack_algo.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/lightmapper/utility/rectpack/__pycache__/packer.cpython-311.pyc b/leenkx/blender/lnx/lightmapper/utility/rectpack/__pycache__/packer.cpython-311.pyc deleted file mode 100644 index c81a573..0000000 Binary files a/leenkx/blender/lnx/lightmapper/utility/rectpack/__pycache__/packer.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/lightmapper/utility/rectpack/__pycache__/skyline.cpython-311.pyc b/leenkx/blender/lnx/lightmapper/utility/rectpack/__pycache__/skyline.cpython-311.pyc deleted file mode 100644 index 2589227..0000000 Binary files a/leenkx/blender/lnx/lightmapper/utility/rectpack/__pycache__/skyline.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/lightmapper/utility/rectpack/__pycache__/waste.cpython-311.pyc b/leenkx/blender/lnx/lightmapper/utility/rectpack/__pycache__/waste.cpython-311.pyc deleted file mode 100644 index f6bf6c4..0000000 Binary files a/leenkx/blender/lnx/lightmapper/utility/rectpack/__pycache__/waste.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/__pycache__/__init__.cpython-311.pyc b/leenkx/blender/lnx/logicnode/__pycache__/__init__.cpython-311.pyc deleted file mode 100644 index c17dbed..0000000 Binary files a/leenkx/blender/lnx/logicnode/__pycache__/__init__.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/__pycache__/lnx_advanced_draw.cpython-311.pyc b/leenkx/blender/lnx/logicnode/__pycache__/lnx_advanced_draw.cpython-311.pyc deleted file mode 100644 index 2a7c7a6..0000000 Binary files a/leenkx/blender/lnx/logicnode/__pycache__/lnx_advanced_draw.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/__pycache__/lnx_node_group.cpython-311.pyc b/leenkx/blender/lnx/logicnode/__pycache__/lnx_node_group.cpython-311.pyc deleted file mode 100644 index 8eb6318..0000000 Binary files a/leenkx/blender/lnx/logicnode/__pycache__/lnx_node_group.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/__pycache__/lnx_nodes.cpython-311.pyc b/leenkx/blender/lnx/logicnode/__pycache__/lnx_nodes.cpython-311.pyc deleted file mode 100644 index d8bf3c9..0000000 Binary files a/leenkx/blender/lnx/logicnode/__pycache__/lnx_nodes.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/__pycache__/lnx_props.cpython-311.pyc b/leenkx/blender/lnx/logicnode/__pycache__/lnx_props.cpython-311.pyc deleted file mode 100644 index 10e3731..0000000 Binary files a/leenkx/blender/lnx/logicnode/__pycache__/lnx_props.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/__pycache__/lnx_sockets.cpython-311.pyc b/leenkx/blender/lnx/logicnode/__pycache__/lnx_sockets.cpython-311.pyc deleted file mode 100644 index 3c8ca54..0000000 Binary files a/leenkx/blender/lnx/logicnode/__pycache__/lnx_sockets.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/__pycache__/replacement.cpython-311.pyc b/leenkx/blender/lnx/logicnode/__pycache__/replacement.cpython-311.pyc deleted file mode 100644 index becf577..0000000 Binary files a/leenkx/blender/lnx/logicnode/__pycache__/replacement.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/__pycache__/tree_variables.cpython-311.pyc b/leenkx/blender/lnx/logicnode/__pycache__/tree_variables.cpython-311.pyc deleted file mode 100644 index daf7494..0000000 Binary files a/leenkx/blender/lnx/logicnode/__pycache__/tree_variables.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/animation/__pycache__/LN_action.cpython-311.pyc b/leenkx/blender/lnx/logicnode/animation/__pycache__/LN_action.cpython-311.pyc deleted file mode 100644 index 8154b54..0000000 Binary files a/leenkx/blender/lnx/logicnode/animation/__pycache__/LN_action.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/animation/__pycache__/LN_action_name.cpython-311.pyc b/leenkx/blender/lnx/logicnode/animation/__pycache__/LN_action_name.cpython-311.pyc deleted file mode 100644 index 31584af..0000000 Binary files a/leenkx/blender/lnx/logicnode/animation/__pycache__/LN_action_name.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/animation/__pycache__/LN_blend_action.cpython-311.pyc b/leenkx/blender/lnx/logicnode/animation/__pycache__/LN_blend_action.cpython-311.pyc deleted file mode 100644 index 3775bd6..0000000 Binary files a/leenkx/blender/lnx/logicnode/animation/__pycache__/LN_blend_action.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/animation/__pycache__/LN_blend_space_gpu.cpython-311.pyc b/leenkx/blender/lnx/logicnode/animation/__pycache__/LN_blend_space_gpu.cpython-311.pyc deleted file mode 100644 index a7fd9ca..0000000 Binary files a/leenkx/blender/lnx/logicnode/animation/__pycache__/LN_blend_space_gpu.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/animation/__pycache__/LN_bone_fk.cpython-311.pyc b/leenkx/blender/lnx/logicnode/animation/__pycache__/LN_bone_fk.cpython-311.pyc deleted file mode 100644 index ba719ea..0000000 Binary files a/leenkx/blender/lnx/logicnode/animation/__pycache__/LN_bone_fk.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/animation/__pycache__/LN_bone_ik.cpython-311.pyc b/leenkx/blender/lnx/logicnode/animation/__pycache__/LN_bone_ik.cpython-311.pyc deleted file mode 100644 index 00a2355..0000000 Binary files a/leenkx/blender/lnx/logicnode/animation/__pycache__/LN_bone_ik.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/animation/__pycache__/LN_evaluate_root_motion.cpython-311.pyc b/leenkx/blender/lnx/logicnode/animation/__pycache__/LN_evaluate_root_motion.cpython-311.pyc deleted file mode 100644 index 938d8ca..0000000 Binary files a/leenkx/blender/lnx/logicnode/animation/__pycache__/LN_evaluate_root_motion.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/animation/__pycache__/LN_get_action_state.cpython-311.pyc b/leenkx/blender/lnx/logicnode/animation/__pycache__/LN_get_action_state.cpython-311.pyc deleted file mode 100644 index 9307e16..0000000 Binary files a/leenkx/blender/lnx/logicnode/animation/__pycache__/LN_get_action_state.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/animation/__pycache__/LN_get_bone_fk_ik_only.cpython-311.pyc b/leenkx/blender/lnx/logicnode/animation/__pycache__/LN_get_bone_fk_ik_only.cpython-311.pyc deleted file mode 100644 index 78fa5cc..0000000 Binary files a/leenkx/blender/lnx/logicnode/animation/__pycache__/LN_get_bone_fk_ik_only.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/animation/__pycache__/LN_get_bone_transform.cpython-311.pyc b/leenkx/blender/lnx/logicnode/animation/__pycache__/LN_get_bone_transform.cpython-311.pyc deleted file mode 100644 index d356fa8..0000000 Binary files a/leenkx/blender/lnx/logicnode/animation/__pycache__/LN_get_bone_transform.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/animation/__pycache__/LN_get_root_motion.cpython-311.pyc b/leenkx/blender/lnx/logicnode/animation/__pycache__/LN_get_root_motion.cpython-311.pyc deleted file mode 100644 index 9789ba6..0000000 Binary files a/leenkx/blender/lnx/logicnode/animation/__pycache__/LN_get_root_motion.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/animation/__pycache__/LN_get_tilesheet_state.cpython-311.pyc b/leenkx/blender/lnx/logicnode/animation/__pycache__/LN_get_tilesheet_state.cpython-311.pyc deleted file mode 100644 index 4b13fcf..0000000 Binary files a/leenkx/blender/lnx/logicnode/animation/__pycache__/LN_get_tilesheet_state.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/animation/__pycache__/LN_on_action_marker.cpython-311.pyc b/leenkx/blender/lnx/logicnode/animation/__pycache__/LN_on_action_marker.cpython-311.pyc deleted file mode 100644 index 3180984..0000000 Binary files a/leenkx/blender/lnx/logicnode/animation/__pycache__/LN_on_action_marker.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/animation/__pycache__/LN_on_action_tree_update.cpython-311.pyc b/leenkx/blender/lnx/logicnode/animation/__pycache__/LN_on_action_tree_update.cpython-311.pyc deleted file mode 100644 index 6cd0b81..0000000 Binary files a/leenkx/blender/lnx/logicnode/animation/__pycache__/LN_on_action_tree_update.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/animation/__pycache__/LN_one_shot_action.cpython-311.pyc b/leenkx/blender/lnx/logicnode/animation/__pycache__/LN_one_shot_action.cpython-311.pyc deleted file mode 100644 index f7b6109..0000000 Binary files a/leenkx/blender/lnx/logicnode/animation/__pycache__/LN_one_shot_action.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/animation/__pycache__/LN_one_shot_action_multi.cpython-311.pyc b/leenkx/blender/lnx/logicnode/animation/__pycache__/LN_one_shot_action_multi.cpython-311.pyc deleted file mode 100644 index 092fd65..0000000 Binary files a/leenkx/blender/lnx/logicnode/animation/__pycache__/LN_one_shot_action_multi.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/animation/__pycache__/LN_play_action_from.cpython-311.pyc b/leenkx/blender/lnx/logicnode/animation/__pycache__/LN_play_action_from.cpython-311.pyc deleted file mode 100644 index 8b7f6f2..0000000 Binary files a/leenkx/blender/lnx/logicnode/animation/__pycache__/LN_play_action_from.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/animation/__pycache__/LN_play_action_tree.cpython-311.pyc b/leenkx/blender/lnx/logicnode/animation/__pycache__/LN_play_action_tree.cpython-311.pyc deleted file mode 100644 index 8bcb9a9..0000000 Binary files a/leenkx/blender/lnx/logicnode/animation/__pycache__/LN_play_action_tree.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/animation/__pycache__/LN_play_tilesheet.cpython-311.pyc b/leenkx/blender/lnx/logicnode/animation/__pycache__/LN_play_tilesheet.cpython-311.pyc deleted file mode 100644 index cf7be1e..0000000 Binary files a/leenkx/blender/lnx/logicnode/animation/__pycache__/LN_play_tilesheet.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/animation/__pycache__/LN_remove_parent_bone.cpython-311.pyc b/leenkx/blender/lnx/logicnode/animation/__pycache__/LN_remove_parent_bone.cpython-311.pyc deleted file mode 100644 index 7eec124..0000000 Binary files a/leenkx/blender/lnx/logicnode/animation/__pycache__/LN_remove_parent_bone.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/animation/__pycache__/LN_restart_action.cpython-311.pyc b/leenkx/blender/lnx/logicnode/animation/__pycache__/LN_restart_action.cpython-311.pyc deleted file mode 100644 index cbb1812..0000000 Binary files a/leenkx/blender/lnx/logicnode/animation/__pycache__/LN_restart_action.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/animation/__pycache__/LN_set_action_frame.cpython-311.pyc b/leenkx/blender/lnx/logicnode/animation/__pycache__/LN_set_action_frame.cpython-311.pyc deleted file mode 100644 index 05b889b..0000000 Binary files a/leenkx/blender/lnx/logicnode/animation/__pycache__/LN_set_action_frame.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/animation/__pycache__/LN_set_action_paused.cpython-311.pyc b/leenkx/blender/lnx/logicnode/animation/__pycache__/LN_set_action_paused.cpython-311.pyc deleted file mode 100644 index 5bac9ae..0000000 Binary files a/leenkx/blender/lnx/logicnode/animation/__pycache__/LN_set_action_paused.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/animation/__pycache__/LN_set_action_speed.cpython-311.pyc b/leenkx/blender/lnx/logicnode/animation/__pycache__/LN_set_action_speed.cpython-311.pyc deleted file mode 100644 index b79047b..0000000 Binary files a/leenkx/blender/lnx/logicnode/animation/__pycache__/LN_set_action_speed.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/animation/__pycache__/LN_set_action_time.cpython-311.pyc b/leenkx/blender/lnx/logicnode/animation/__pycache__/LN_set_action_time.cpython-311.pyc deleted file mode 100644 index 69e77a2..0000000 Binary files a/leenkx/blender/lnx/logicnode/animation/__pycache__/LN_set_action_time.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/animation/__pycache__/LN_set_active_tilesheet.cpython-311.pyc b/leenkx/blender/lnx/logicnode/animation/__pycache__/LN_set_active_tilesheet.cpython-311.pyc deleted file mode 100644 index bef4568..0000000 Binary files a/leenkx/blender/lnx/logicnode/animation/__pycache__/LN_set_active_tilesheet.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/animation/__pycache__/LN_set_bone_fk_ik_only.cpython-311.pyc b/leenkx/blender/lnx/logicnode/animation/__pycache__/LN_set_bone_fk_ik_only.cpython-311.pyc deleted file mode 100644 index 7f7cf91..0000000 Binary files a/leenkx/blender/lnx/logicnode/animation/__pycache__/LN_set_bone_fk_ik_only.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/animation/__pycache__/LN_set_bone_transform.cpython-311.pyc b/leenkx/blender/lnx/logicnode/animation/__pycache__/LN_set_bone_transform.cpython-311.pyc deleted file mode 100644 index ecc80be..0000000 Binary files a/leenkx/blender/lnx/logicnode/animation/__pycache__/LN_set_bone_transform.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/animation/__pycache__/LN_set_parent_bone.cpython-311.pyc b/leenkx/blender/lnx/logicnode/animation/__pycache__/LN_set_parent_bone.cpython-311.pyc deleted file mode 100644 index 0c15b82..0000000 Binary files a/leenkx/blender/lnx/logicnode/animation/__pycache__/LN_set_parent_bone.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/animation/__pycache__/LN_set_tilesheet_frame.cpython-311.pyc b/leenkx/blender/lnx/logicnode/animation/__pycache__/LN_set_tilesheet_frame.cpython-311.pyc deleted file mode 100644 index 5496fdf..0000000 Binary files a/leenkx/blender/lnx/logicnode/animation/__pycache__/LN_set_tilesheet_frame.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/animation/__pycache__/LN_set_tilesheet_paused.cpython-311.pyc b/leenkx/blender/lnx/logicnode/animation/__pycache__/LN_set_tilesheet_paused.cpython-311.pyc deleted file mode 100644 index 7c2be29..0000000 Binary files a/leenkx/blender/lnx/logicnode/animation/__pycache__/LN_set_tilesheet_paused.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/animation/__pycache__/LN_simple_foot_ik.cpython-311.pyc b/leenkx/blender/lnx/logicnode/animation/__pycache__/LN_simple_foot_ik.cpython-311.pyc deleted file mode 100644 index 236c45c..0000000 Binary files a/leenkx/blender/lnx/logicnode/animation/__pycache__/LN_simple_foot_ik.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/animation/__pycache__/LN_switch_action.cpython-311.pyc b/leenkx/blender/lnx/logicnode/animation/__pycache__/LN_switch_action.cpython-311.pyc deleted file mode 100644 index 07e6ce4..0000000 Binary files a/leenkx/blender/lnx/logicnode/animation/__pycache__/LN_switch_action.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/animation/__pycache__/LN_switch_action_multi.cpython-311.pyc b/leenkx/blender/lnx/logicnode/animation/__pycache__/LN_switch_action_multi.cpython-311.pyc deleted file mode 100644 index 1bbffd4..0000000 Binary files a/leenkx/blender/lnx/logicnode/animation/__pycache__/LN_switch_action_multi.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/animation/__pycache__/LN_sync_actions.cpython-311.pyc b/leenkx/blender/lnx/logicnode/animation/__pycache__/LN_sync_actions.cpython-311.pyc deleted file mode 100644 index 11bf3b4..0000000 Binary files a/leenkx/blender/lnx/logicnode/animation/__pycache__/LN_sync_actions.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/animation/__pycache__/__init__.cpython-311.pyc b/leenkx/blender/lnx/logicnode/animation/__pycache__/__init__.cpython-311.pyc deleted file mode 100644 index f44b1ad..0000000 Binary files a/leenkx/blender/lnx/logicnode/animation/__pycache__/__init__.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/array/__pycache__/LN_array.cpython-311.pyc b/leenkx/blender/lnx/logicnode/array/__pycache__/LN_array.cpython-311.pyc deleted file mode 100644 index e961bc8..0000000 Binary files a/leenkx/blender/lnx/logicnode/array/__pycache__/LN_array.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/array/__pycache__/LN_array_add.cpython-311.pyc b/leenkx/blender/lnx/logicnode/array/__pycache__/LN_array_add.cpython-311.pyc deleted file mode 100644 index 1bc3f91..0000000 Binary files a/leenkx/blender/lnx/logicnode/array/__pycache__/LN_array_add.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/array/__pycache__/LN_array_boolean.cpython-311.pyc b/leenkx/blender/lnx/logicnode/array/__pycache__/LN_array_boolean.cpython-311.pyc deleted file mode 100644 index 79163b6..0000000 Binary files a/leenkx/blender/lnx/logicnode/array/__pycache__/LN_array_boolean.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/array/__pycache__/LN_array_color.cpython-311.pyc b/leenkx/blender/lnx/logicnode/array/__pycache__/LN_array_color.cpython-311.pyc deleted file mode 100644 index d9d98fd..0000000 Binary files a/leenkx/blender/lnx/logicnode/array/__pycache__/LN_array_color.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/array/__pycache__/LN_array_compare.cpython-311.pyc b/leenkx/blender/lnx/logicnode/array/__pycache__/LN_array_compare.cpython-311.pyc deleted file mode 100644 index b5f5e84..0000000 Binary files a/leenkx/blender/lnx/logicnode/array/__pycache__/LN_array_compare.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/array/__pycache__/LN_array_concat.cpython-311.pyc b/leenkx/blender/lnx/logicnode/array/__pycache__/LN_array_concat.cpython-311.pyc deleted file mode 100644 index b6b8682..0000000 Binary files a/leenkx/blender/lnx/logicnode/array/__pycache__/LN_array_concat.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/array/__pycache__/LN_array_contains.cpython-311.pyc b/leenkx/blender/lnx/logicnode/array/__pycache__/LN_array_contains.cpython-311.pyc deleted file mode 100644 index d3d3eb4..0000000 Binary files a/leenkx/blender/lnx/logicnode/array/__pycache__/LN_array_contains.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/array/__pycache__/LN_array_count.cpython-311.pyc b/leenkx/blender/lnx/logicnode/array/__pycache__/LN_array_count.cpython-311.pyc deleted file mode 100644 index 404c7d9..0000000 Binary files a/leenkx/blender/lnx/logicnode/array/__pycache__/LN_array_count.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/array/__pycache__/LN_array_display.cpython-311.pyc b/leenkx/blender/lnx/logicnode/array/__pycache__/LN_array_display.cpython-311.pyc deleted file mode 100644 index 9f027f2..0000000 Binary files a/leenkx/blender/lnx/logicnode/array/__pycache__/LN_array_display.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/array/__pycache__/LN_array_distinct.cpython-311.pyc b/leenkx/blender/lnx/logicnode/array/__pycache__/LN_array_distinct.cpython-311.pyc deleted file mode 100644 index 61610f6..0000000 Binary files a/leenkx/blender/lnx/logicnode/array/__pycache__/LN_array_distinct.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/array/__pycache__/LN_array_filter.cpython-311.pyc b/leenkx/blender/lnx/logicnode/array/__pycache__/LN_array_filter.cpython-311.pyc deleted file mode 100644 index fc1e966..0000000 Binary files a/leenkx/blender/lnx/logicnode/array/__pycache__/LN_array_filter.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/array/__pycache__/LN_array_float.cpython-311.pyc b/leenkx/blender/lnx/logicnode/array/__pycache__/LN_array_float.cpython-311.pyc deleted file mode 100644 index a6e2dba..0000000 Binary files a/leenkx/blender/lnx/logicnode/array/__pycache__/LN_array_float.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/array/__pycache__/LN_array_get.cpython-311.pyc b/leenkx/blender/lnx/logicnode/array/__pycache__/LN_array_get.cpython-311.pyc deleted file mode 100644 index c7ba75f..0000000 Binary files a/leenkx/blender/lnx/logicnode/array/__pycache__/LN_array_get.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/array/__pycache__/LN_array_get_PreviousNext.cpython-311.pyc b/leenkx/blender/lnx/logicnode/array/__pycache__/LN_array_get_PreviousNext.cpython-311.pyc deleted file mode 100644 index 6f19df1..0000000 Binary files a/leenkx/blender/lnx/logicnode/array/__pycache__/LN_array_get_PreviousNext.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/array/__pycache__/LN_array_get_next.cpython-311.pyc b/leenkx/blender/lnx/logicnode/array/__pycache__/LN_array_get_next.cpython-311.pyc deleted file mode 100644 index 751fe1a..0000000 Binary files a/leenkx/blender/lnx/logicnode/array/__pycache__/LN_array_get_next.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/array/__pycache__/LN_array_index.cpython-311.pyc b/leenkx/blender/lnx/logicnode/array/__pycache__/LN_array_index.cpython-311.pyc deleted file mode 100644 index 6360fc6..0000000 Binary files a/leenkx/blender/lnx/logicnode/array/__pycache__/LN_array_index.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/array/__pycache__/LN_array_index_list.cpython-311.pyc b/leenkx/blender/lnx/logicnode/array/__pycache__/LN_array_index_list.cpython-311.pyc deleted file mode 100644 index d391050..0000000 Binary files a/leenkx/blender/lnx/logicnode/array/__pycache__/LN_array_index_list.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/array/__pycache__/LN_array_insert.cpython-311.pyc b/leenkx/blender/lnx/logicnode/array/__pycache__/LN_array_insert.cpython-311.pyc deleted file mode 100644 index 5b5bb45..0000000 Binary files a/leenkx/blender/lnx/logicnode/array/__pycache__/LN_array_insert.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/array/__pycache__/LN_array_integer.cpython-311.pyc b/leenkx/blender/lnx/logicnode/array/__pycache__/LN_array_integer.cpython-311.pyc deleted file mode 100644 index 1d9e722..0000000 Binary files a/leenkx/blender/lnx/logicnode/array/__pycache__/LN_array_integer.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/array/__pycache__/LN_array_length.cpython-311.pyc b/leenkx/blender/lnx/logicnode/array/__pycache__/LN_array_length.cpython-311.pyc deleted file mode 100644 index 28a6549..0000000 Binary files a/leenkx/blender/lnx/logicnode/array/__pycache__/LN_array_length.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/array/__pycache__/LN_array_loop_node.cpython-311.pyc b/leenkx/blender/lnx/logicnode/array/__pycache__/LN_array_loop_node.cpython-311.pyc deleted file mode 100644 index 5638461..0000000 Binary files a/leenkx/blender/lnx/logicnode/array/__pycache__/LN_array_loop_node.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/array/__pycache__/LN_array_object.cpython-311.pyc b/leenkx/blender/lnx/logicnode/array/__pycache__/LN_array_object.cpython-311.pyc deleted file mode 100644 index 798a2bb..0000000 Binary files a/leenkx/blender/lnx/logicnode/array/__pycache__/LN_array_object.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/array/__pycache__/LN_array_pop.cpython-311.pyc b/leenkx/blender/lnx/logicnode/array/__pycache__/LN_array_pop.cpython-311.pyc deleted file mode 100644 index d5bd841..0000000 Binary files a/leenkx/blender/lnx/logicnode/array/__pycache__/LN_array_pop.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/array/__pycache__/LN_array_remove_by_index.cpython-311.pyc b/leenkx/blender/lnx/logicnode/array/__pycache__/LN_array_remove_by_index.cpython-311.pyc deleted file mode 100644 index 9268f9c..0000000 Binary files a/leenkx/blender/lnx/logicnode/array/__pycache__/LN_array_remove_by_index.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/array/__pycache__/LN_array_remove_by_value.cpython-311.pyc b/leenkx/blender/lnx/logicnode/array/__pycache__/LN_array_remove_by_value.cpython-311.pyc deleted file mode 100644 index e4cffc8..0000000 Binary files a/leenkx/blender/lnx/logicnode/array/__pycache__/LN_array_remove_by_value.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/array/__pycache__/LN_array_resize.cpython-311.pyc b/leenkx/blender/lnx/logicnode/array/__pycache__/LN_array_resize.cpython-311.pyc deleted file mode 100644 index e4f229b..0000000 Binary files a/leenkx/blender/lnx/logicnode/array/__pycache__/LN_array_resize.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/array/__pycache__/LN_array_reverse.cpython-311.pyc b/leenkx/blender/lnx/logicnode/array/__pycache__/LN_array_reverse.cpython-311.pyc deleted file mode 100644 index 98a6f7d..0000000 Binary files a/leenkx/blender/lnx/logicnode/array/__pycache__/LN_array_reverse.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/array/__pycache__/LN_array_sample.cpython-311.pyc b/leenkx/blender/lnx/logicnode/array/__pycache__/LN_array_sample.cpython-311.pyc deleted file mode 100644 index 696d388..0000000 Binary files a/leenkx/blender/lnx/logicnode/array/__pycache__/LN_array_sample.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/array/__pycache__/LN_array_set.cpython-311.pyc b/leenkx/blender/lnx/logicnode/array/__pycache__/LN_array_set.cpython-311.pyc deleted file mode 100644 index c97b6be..0000000 Binary files a/leenkx/blender/lnx/logicnode/array/__pycache__/LN_array_set.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/array/__pycache__/LN_array_shift.cpython-311.pyc b/leenkx/blender/lnx/logicnode/array/__pycache__/LN_array_shift.cpython-311.pyc deleted file mode 100644 index 70a2814..0000000 Binary files a/leenkx/blender/lnx/logicnode/array/__pycache__/LN_array_shift.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/array/__pycache__/LN_array_shuffle.cpython-311.pyc b/leenkx/blender/lnx/logicnode/array/__pycache__/LN_array_shuffle.cpython-311.pyc deleted file mode 100644 index a3d1bd3..0000000 Binary files a/leenkx/blender/lnx/logicnode/array/__pycache__/LN_array_shuffle.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/array/__pycache__/LN_array_slice.cpython-311.pyc b/leenkx/blender/lnx/logicnode/array/__pycache__/LN_array_slice.cpython-311.pyc deleted file mode 100644 index 6d26d54..0000000 Binary files a/leenkx/blender/lnx/logicnode/array/__pycache__/LN_array_slice.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/array/__pycache__/LN_array_sort.cpython-311.pyc b/leenkx/blender/lnx/logicnode/array/__pycache__/LN_array_sort.cpython-311.pyc deleted file mode 100644 index c5b9607..0000000 Binary files a/leenkx/blender/lnx/logicnode/array/__pycache__/LN_array_sort.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/array/__pycache__/LN_array_splice.cpython-311.pyc b/leenkx/blender/lnx/logicnode/array/__pycache__/LN_array_splice.cpython-311.pyc deleted file mode 100644 index eb5c9ef..0000000 Binary files a/leenkx/blender/lnx/logicnode/array/__pycache__/LN_array_splice.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/array/__pycache__/LN_array_string.cpython-311.pyc b/leenkx/blender/lnx/logicnode/array/__pycache__/LN_array_string.cpython-311.pyc deleted file mode 100644 index 803f460..0000000 Binary files a/leenkx/blender/lnx/logicnode/array/__pycache__/LN_array_string.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/array/__pycache__/LN_array_vector.cpython-311.pyc b/leenkx/blender/lnx/logicnode/array/__pycache__/LN_array_vector.cpython-311.pyc deleted file mode 100644 index 10ea5e7..0000000 Binary files a/leenkx/blender/lnx/logicnode/array/__pycache__/LN_array_vector.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/array/__pycache__/__init__.cpython-311.pyc b/leenkx/blender/lnx/logicnode/array/__pycache__/__init__.cpython-311.pyc deleted file mode 100644 index 860cb10..0000000 Binary files a/leenkx/blender/lnx/logicnode/array/__pycache__/__init__.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/browser/__pycache__/LN_alert.cpython-311.pyc b/leenkx/blender/lnx/logicnode/browser/__pycache__/LN_alert.cpython-311.pyc deleted file mode 100644 index 23145ef..0000000 Binary files a/leenkx/blender/lnx/logicnode/browser/__pycache__/LN_alert.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/browser/__pycache__/LN_confirm.cpython-311.pyc b/leenkx/blender/lnx/logicnode/browser/__pycache__/LN_confirm.cpython-311.pyc deleted file mode 100644 index d6ac6d8..0000000 Binary files a/leenkx/blender/lnx/logicnode/browser/__pycache__/LN_confirm.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/browser/__pycache__/LN_detect_mobile_browser.cpython-311.pyc b/leenkx/blender/lnx/logicnode/browser/__pycache__/LN_detect_mobile_browser.cpython-311.pyc deleted file mode 100644 index 7b3ce75..0000000 Binary files a/leenkx/blender/lnx/logicnode/browser/__pycache__/LN_detect_mobile_browser.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/browser/__pycache__/LN_loadUrl.cpython-311.pyc b/leenkx/blender/lnx/logicnode/browser/__pycache__/LN_loadUrl.cpython-311.pyc deleted file mode 100644 index 895f888..0000000 Binary files a/leenkx/blender/lnx/logicnode/browser/__pycache__/LN_loadUrl.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/browser/__pycache__/LN_prompt.cpython-311.pyc b/leenkx/blender/lnx/logicnode/browser/__pycache__/LN_prompt.cpython-311.pyc deleted file mode 100644 index 7e48484..0000000 Binary files a/leenkx/blender/lnx/logicnode/browser/__pycache__/LN_prompt.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/browser/__pycache__/__init__.cpython-311.pyc b/leenkx/blender/lnx/logicnode/browser/__pycache__/__init__.cpython-311.pyc deleted file mode 100644 index 6999243..0000000 Binary files a/leenkx/blender/lnx/logicnode/browser/__pycache__/__init__.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/camera/__pycache__/LN_get_camera_active.cpython-311.pyc b/leenkx/blender/lnx/logicnode/camera/__pycache__/LN_get_camera_active.cpython-311.pyc deleted file mode 100644 index 4c6cd67..0000000 Binary files a/leenkx/blender/lnx/logicnode/camera/__pycache__/LN_get_camera_active.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/camera/__pycache__/LN_get_camera_aspect.cpython-311.pyc b/leenkx/blender/lnx/logicnode/camera/__pycache__/LN_get_camera_aspect.cpython-311.pyc deleted file mode 100644 index 096d468..0000000 Binary files a/leenkx/blender/lnx/logicnode/camera/__pycache__/LN_get_camera_aspect.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/camera/__pycache__/LN_get_camera_fov.cpython-311.pyc b/leenkx/blender/lnx/logicnode/camera/__pycache__/LN_get_camera_fov.cpython-311.pyc deleted file mode 100644 index c1d0b61..0000000 Binary files a/leenkx/blender/lnx/logicnode/camera/__pycache__/LN_get_camera_fov.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/camera/__pycache__/LN_get_camera_scale.cpython-311.pyc b/leenkx/blender/lnx/logicnode/camera/__pycache__/LN_get_camera_scale.cpython-311.pyc deleted file mode 100644 index 6b706ca..0000000 Binary files a/leenkx/blender/lnx/logicnode/camera/__pycache__/LN_get_camera_scale.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/camera/__pycache__/LN_get_camera_start_end.cpython-311.pyc b/leenkx/blender/lnx/logicnode/camera/__pycache__/LN_get_camera_start_end.cpython-311.pyc deleted file mode 100644 index fe52337..0000000 Binary files a/leenkx/blender/lnx/logicnode/camera/__pycache__/LN_get_camera_start_end.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/camera/__pycache__/LN_get_camera_type.cpython-311.pyc b/leenkx/blender/lnx/logicnode/camera/__pycache__/LN_get_camera_type.cpython-311.pyc deleted file mode 100644 index 2147cfd..0000000 Binary files a/leenkx/blender/lnx/logicnode/camera/__pycache__/LN_get_camera_type.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/camera/__pycache__/LN_set_camera_active.cpython-311.pyc b/leenkx/blender/lnx/logicnode/camera/__pycache__/LN_set_camera_active.cpython-311.pyc deleted file mode 100644 index 17de689..0000000 Binary files a/leenkx/blender/lnx/logicnode/camera/__pycache__/LN_set_camera_active.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/camera/__pycache__/LN_set_camera_aspect.cpython-311.pyc b/leenkx/blender/lnx/logicnode/camera/__pycache__/LN_set_camera_aspect.cpython-311.pyc deleted file mode 100644 index 4e38644..0000000 Binary files a/leenkx/blender/lnx/logicnode/camera/__pycache__/LN_set_camera_aspect.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/camera/__pycache__/LN_set_camera_fov.cpython-311.pyc b/leenkx/blender/lnx/logicnode/camera/__pycache__/LN_set_camera_fov.cpython-311.pyc deleted file mode 100644 index 471c2cd..0000000 Binary files a/leenkx/blender/lnx/logicnode/camera/__pycache__/LN_set_camera_fov.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/camera/__pycache__/LN_set_camera_scale.cpython-311.pyc b/leenkx/blender/lnx/logicnode/camera/__pycache__/LN_set_camera_scale.cpython-311.pyc deleted file mode 100644 index 8c1b4c0..0000000 Binary files a/leenkx/blender/lnx/logicnode/camera/__pycache__/LN_set_camera_scale.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/camera/__pycache__/LN_set_camera_start_end.cpython-311.pyc b/leenkx/blender/lnx/logicnode/camera/__pycache__/LN_set_camera_start_end.cpython-311.pyc deleted file mode 100644 index f431758..0000000 Binary files a/leenkx/blender/lnx/logicnode/camera/__pycache__/LN_set_camera_start_end.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/camera/__pycache__/LN_set_camera_type.cpython-311.pyc b/leenkx/blender/lnx/logicnode/camera/__pycache__/LN_set_camera_type.cpython-311.pyc deleted file mode 100644 index 16f3d5f..0000000 Binary files a/leenkx/blender/lnx/logicnode/camera/__pycache__/LN_set_camera_type.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/camera/__pycache__/__init__.cpython-311.pyc b/leenkx/blender/lnx/logicnode/camera/__pycache__/__init__.cpython-311.pyc deleted file mode 100644 index f8a323c..0000000 Binary files a/leenkx/blender/lnx/logicnode/camera/__pycache__/__init__.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/canvas/__pycache__/LN_get_canvas_checkbox.cpython-311.pyc b/leenkx/blender/lnx/logicnode/canvas/__pycache__/LN_get_canvas_checkbox.cpython-311.pyc deleted file mode 100644 index 0152c53..0000000 Binary files a/leenkx/blender/lnx/logicnode/canvas/__pycache__/LN_get_canvas_checkbox.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/canvas/__pycache__/LN_get_canvas_input_text.cpython-311.pyc b/leenkx/blender/lnx/logicnode/canvas/__pycache__/LN_get_canvas_input_text.cpython-311.pyc deleted file mode 100644 index 5ea26ef..0000000 Binary files a/leenkx/blender/lnx/logicnode/canvas/__pycache__/LN_get_canvas_input_text.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/canvas/__pycache__/LN_get_canvas_location.cpython-311.pyc b/leenkx/blender/lnx/logicnode/canvas/__pycache__/LN_get_canvas_location.cpython-311.pyc deleted file mode 100644 index 0330c4a..0000000 Binary files a/leenkx/blender/lnx/logicnode/canvas/__pycache__/LN_get_canvas_location.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/canvas/__pycache__/LN_get_canvas_position.cpython-311.pyc b/leenkx/blender/lnx/logicnode/canvas/__pycache__/LN_get_canvas_position.cpython-311.pyc deleted file mode 100644 index 65d53b8..0000000 Binary files a/leenkx/blender/lnx/logicnode/canvas/__pycache__/LN_get_canvas_position.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/canvas/__pycache__/LN_get_canvas_progress_bar.cpython-311.pyc b/leenkx/blender/lnx/logicnode/canvas/__pycache__/LN_get_canvas_progress_bar.cpython-311.pyc deleted file mode 100644 index 5e9a398..0000000 Binary files a/leenkx/blender/lnx/logicnode/canvas/__pycache__/LN_get_canvas_progress_bar.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/canvas/__pycache__/LN_get_canvas_rotation.cpython-311.pyc b/leenkx/blender/lnx/logicnode/canvas/__pycache__/LN_get_canvas_rotation.cpython-311.pyc deleted file mode 100644 index 4a0329b..0000000 Binary files a/leenkx/blender/lnx/logicnode/canvas/__pycache__/LN_get_canvas_rotation.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/canvas/__pycache__/LN_get_canvas_scale.cpython-311.pyc b/leenkx/blender/lnx/logicnode/canvas/__pycache__/LN_get_canvas_scale.cpython-311.pyc deleted file mode 100644 index 939028d..0000000 Binary files a/leenkx/blender/lnx/logicnode/canvas/__pycache__/LN_get_canvas_scale.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/canvas/__pycache__/LN_get_canvas_slider.cpython-311.pyc b/leenkx/blender/lnx/logicnode/canvas/__pycache__/LN_get_canvas_slider.cpython-311.pyc deleted file mode 100644 index 7cc1e6c..0000000 Binary files a/leenkx/blender/lnx/logicnode/canvas/__pycache__/LN_get_canvas_slider.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/canvas/__pycache__/LN_get_canvas_text.cpython-311.pyc b/leenkx/blender/lnx/logicnode/canvas/__pycache__/LN_get_canvas_text.cpython-311.pyc deleted file mode 100644 index faaf728..0000000 Binary files a/leenkx/blender/lnx/logicnode/canvas/__pycache__/LN_get_canvas_text.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/canvas/__pycache__/LN_get_canvas_visible.cpython-311.pyc b/leenkx/blender/lnx/logicnode/canvas/__pycache__/LN_get_canvas_visible.cpython-311.pyc deleted file mode 100644 index 67ebeef..0000000 Binary files a/leenkx/blender/lnx/logicnode/canvas/__pycache__/LN_get_canvas_visible.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/canvas/__pycache__/LN_get_global_canvas_font_size.cpython-311.pyc b/leenkx/blender/lnx/logicnode/canvas/__pycache__/LN_get_global_canvas_font_size.cpython-311.pyc deleted file mode 100644 index 676c1af..0000000 Binary files a/leenkx/blender/lnx/logicnode/canvas/__pycache__/LN_get_global_canvas_font_size.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/canvas/__pycache__/LN_get_global_canvas_scale.cpython-311.pyc b/leenkx/blender/lnx/logicnode/canvas/__pycache__/LN_get_global_canvas_scale.cpython-311.pyc deleted file mode 100644 index 1169fd9..0000000 Binary files a/leenkx/blender/lnx/logicnode/canvas/__pycache__/LN_get_global_canvas_scale.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/canvas/__pycache__/LN_on_canvas_element.cpython-311.pyc b/leenkx/blender/lnx/logicnode/canvas/__pycache__/LN_on_canvas_element.cpython-311.pyc deleted file mode 100644 index 4be7857..0000000 Binary files a/leenkx/blender/lnx/logicnode/canvas/__pycache__/LN_on_canvas_element.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/canvas/__pycache__/LN_set_canvas_asset.cpython-311.pyc b/leenkx/blender/lnx/logicnode/canvas/__pycache__/LN_set_canvas_asset.cpython-311.pyc deleted file mode 100644 index 77501fe..0000000 Binary files a/leenkx/blender/lnx/logicnode/canvas/__pycache__/LN_set_canvas_asset.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/canvas/__pycache__/LN_set_canvas_checkbox.cpython-311.pyc b/leenkx/blender/lnx/logicnode/canvas/__pycache__/LN_set_canvas_checkbox.cpython-311.pyc deleted file mode 100644 index 14a4e94..0000000 Binary files a/leenkx/blender/lnx/logicnode/canvas/__pycache__/LN_set_canvas_checkbox.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/canvas/__pycache__/LN_set_canvas_color.cpython-311.pyc b/leenkx/blender/lnx/logicnode/canvas/__pycache__/LN_set_canvas_color.cpython-311.pyc deleted file mode 100644 index eedbca4..0000000 Binary files a/leenkx/blender/lnx/logicnode/canvas/__pycache__/LN_set_canvas_color.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/canvas/__pycache__/LN_set_canvas_input_text.cpython-311.pyc b/leenkx/blender/lnx/logicnode/canvas/__pycache__/LN_set_canvas_input_text.cpython-311.pyc deleted file mode 100644 index 8b9e53d..0000000 Binary files a/leenkx/blender/lnx/logicnode/canvas/__pycache__/LN_set_canvas_input_text.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/canvas/__pycache__/LN_set_canvas_input_text_focus.cpython-311.pyc b/leenkx/blender/lnx/logicnode/canvas/__pycache__/LN_set_canvas_input_text_focus.cpython-311.pyc deleted file mode 100644 index 4d6f2dd..0000000 Binary files a/leenkx/blender/lnx/logicnode/canvas/__pycache__/LN_set_canvas_input_text_focus.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/canvas/__pycache__/LN_set_canvas_location.cpython-311.pyc b/leenkx/blender/lnx/logicnode/canvas/__pycache__/LN_set_canvas_location.cpython-311.pyc deleted file mode 100644 index 9064e8e..0000000 Binary files a/leenkx/blender/lnx/logicnode/canvas/__pycache__/LN_set_canvas_location.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/canvas/__pycache__/LN_set_canvas_progress_bar.cpython-311.pyc b/leenkx/blender/lnx/logicnode/canvas/__pycache__/LN_set_canvas_progress_bar.cpython-311.pyc deleted file mode 100644 index 135b371..0000000 Binary files a/leenkx/blender/lnx/logicnode/canvas/__pycache__/LN_set_canvas_progress_bar.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/canvas/__pycache__/LN_set_canvas_rotation.cpython-311.pyc b/leenkx/blender/lnx/logicnode/canvas/__pycache__/LN_set_canvas_rotation.cpython-311.pyc deleted file mode 100644 index 39b6b0e..0000000 Binary files a/leenkx/blender/lnx/logicnode/canvas/__pycache__/LN_set_canvas_rotation.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/canvas/__pycache__/LN_set_canvas_scale.cpython-311.pyc b/leenkx/blender/lnx/logicnode/canvas/__pycache__/LN_set_canvas_scale.cpython-311.pyc deleted file mode 100644 index e33bee4..0000000 Binary files a/leenkx/blender/lnx/logicnode/canvas/__pycache__/LN_set_canvas_scale.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/canvas/__pycache__/LN_set_canvas_slider.cpython-311.pyc b/leenkx/blender/lnx/logicnode/canvas/__pycache__/LN_set_canvas_slider.cpython-311.pyc deleted file mode 100644 index 42f977b..0000000 Binary files a/leenkx/blender/lnx/logicnode/canvas/__pycache__/LN_set_canvas_slider.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/canvas/__pycache__/LN_set_canvas_text.cpython-311.pyc b/leenkx/blender/lnx/logicnode/canvas/__pycache__/LN_set_canvas_text.cpython-311.pyc deleted file mode 100644 index 76bf49d..0000000 Binary files a/leenkx/blender/lnx/logicnode/canvas/__pycache__/LN_set_canvas_text.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/canvas/__pycache__/LN_set_canvas_visible.cpython-311.pyc b/leenkx/blender/lnx/logicnode/canvas/__pycache__/LN_set_canvas_visible.cpython-311.pyc deleted file mode 100644 index 3e9dd25..0000000 Binary files a/leenkx/blender/lnx/logicnode/canvas/__pycache__/LN_set_canvas_visible.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/canvas/__pycache__/LN_set_global_canvas_font_size.cpython-311.pyc b/leenkx/blender/lnx/logicnode/canvas/__pycache__/LN_set_global_canvas_font_size.cpython-311.pyc deleted file mode 100644 index 4131996..0000000 Binary files a/leenkx/blender/lnx/logicnode/canvas/__pycache__/LN_set_global_canvas_font_size.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/canvas/__pycache__/LN_set_global_canvas_scale.cpython-311.pyc b/leenkx/blender/lnx/logicnode/canvas/__pycache__/LN_set_global_canvas_scale.cpython-311.pyc deleted file mode 100644 index 634b6ce..0000000 Binary files a/leenkx/blender/lnx/logicnode/canvas/__pycache__/LN_set_global_canvas_scale.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/canvas/__pycache__/LN_set_global_canvas_visibility.cpython-311.pyc b/leenkx/blender/lnx/logicnode/canvas/__pycache__/LN_set_global_canvas_visibility.cpython-311.pyc deleted file mode 100644 index e1d0788..0000000 Binary files a/leenkx/blender/lnx/logicnode/canvas/__pycache__/LN_set_global_canvas_visibility.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/canvas/__pycache__/__init__.cpython-311.pyc b/leenkx/blender/lnx/logicnode/canvas/__pycache__/__init__.cpython-311.pyc deleted file mode 100644 index e14ee9b..0000000 Binary files a/leenkx/blender/lnx/logicnode/canvas/__pycache__/__init__.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/custom/__pycache__/LN_add_torrent.cpython-311.pyc b/leenkx/blender/lnx/logicnode/custom/__pycache__/LN_add_torrent.cpython-311.pyc deleted file mode 100644 index 7dc5e7d..0000000 Binary files a/leenkx/blender/lnx/logicnode/custom/__pycache__/LN_add_torrent.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/custom/__pycache__/LN_audio_dsp_filter.cpython-311.pyc b/leenkx/blender/lnx/logicnode/custom/__pycache__/LN_audio_dsp_filter.cpython-311.pyc deleted file mode 100644 index 6c25ca9..0000000 Binary files a/leenkx/blender/lnx/logicnode/custom/__pycache__/LN_audio_dsp_filter.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/custom/__pycache__/LN_audio_dsp_haas_effect.cpython-311.pyc b/leenkx/blender/lnx/logicnode/custom/__pycache__/LN_audio_dsp_haas_effect.cpython-311.pyc deleted file mode 100644 index abea275..0000000 Binary files a/leenkx/blender/lnx/logicnode/custom/__pycache__/LN_audio_dsp_haas_effect.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/custom/__pycache__/LN_audio_hrtf_panner.cpython-311.pyc b/leenkx/blender/lnx/logicnode/custom/__pycache__/LN_audio_hrtf_panner.cpython-311.pyc deleted file mode 100644 index 7cc2bcb..0000000 Binary files a/leenkx/blender/lnx/logicnode/custom/__pycache__/LN_audio_hrtf_panner.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/custom/__pycache__/LN_audio_load.cpython-311.pyc b/leenkx/blender/lnx/logicnode/custom/__pycache__/LN_audio_load.cpython-311.pyc deleted file mode 100644 index 70a9b7e..0000000 Binary files a/leenkx/blender/lnx/logicnode/custom/__pycache__/LN_audio_load.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/custom/__pycache__/LN_audio_pause.cpython-311.pyc b/leenkx/blender/lnx/logicnode/custom/__pycache__/LN_audio_pause.cpython-311.pyc deleted file mode 100644 index 1ea5e01..0000000 Binary files a/leenkx/blender/lnx/logicnode/custom/__pycache__/LN_audio_pause.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/custom/__pycache__/LN_audio_play.cpython-311.pyc b/leenkx/blender/lnx/logicnode/custom/__pycache__/LN_audio_play.cpython-311.pyc deleted file mode 100644 index 19c8467..0000000 Binary files a/leenkx/blender/lnx/logicnode/custom/__pycache__/LN_audio_play.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/custom/__pycache__/LN_audio_stereo_panner.cpython-311.pyc b/leenkx/blender/lnx/logicnode/custom/__pycache__/LN_audio_stereo_panner.cpython-311.pyc deleted file mode 100644 index d27e81f..0000000 Binary files a/leenkx/blender/lnx/logicnode/custom/__pycache__/LN_audio_stereo_panner.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/custom/__pycache__/LN_audio_stop.cpython-311.pyc b/leenkx/blender/lnx/logicnode/custom/__pycache__/LN_audio_stop.cpython-311.pyc deleted file mode 100644 index 76ea416..0000000 Binary files a/leenkx/blender/lnx/logicnode/custom/__pycache__/LN_audio_stop.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/custom/__pycache__/LN_call_wasm.cpython-311.pyc b/leenkx/blender/lnx/logicnode/custom/__pycache__/LN_call_wasm.cpython-311.pyc deleted file mode 100644 index 5ab0506..0000000 Binary files a/leenkx/blender/lnx/logicnode/custom/__pycache__/LN_call_wasm.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/custom/__pycache__/LN_create_element.cpython-311.pyc b/leenkx/blender/lnx/logicnode/custom/__pycache__/LN_create_element.cpython-311.pyc deleted file mode 100644 index e08e48b..0000000 Binary files a/leenkx/blender/lnx/logicnode/custom/__pycache__/LN_create_element.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/custom/__pycache__/LN_create_leenkx.cpython-311.pyc b/leenkx/blender/lnx/logicnode/custom/__pycache__/LN_create_leenkx.cpython-311.pyc deleted file mode 100644 index 9d4f903..0000000 Binary files a/leenkx/blender/lnx/logicnode/custom/__pycache__/LN_create_leenkx.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/custom/__pycache__/LN_create_style.cpython-311.pyc b/leenkx/blender/lnx/logicnode/custom/__pycache__/LN_create_style.cpython-311.pyc deleted file mode 100644 index 8a38389..0000000 Binary files a/leenkx/blender/lnx/logicnode/custom/__pycache__/LN_create_style.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/custom/__pycache__/LN_create_torrent.cpython-311.pyc b/leenkx/blender/lnx/logicnode/custom/__pycache__/LN_create_torrent.cpython-311.pyc deleted file mode 100644 index 2145c2d..0000000 Binary files a/leenkx/blender/lnx/logicnode/custom/__pycache__/LN_create_torrent.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/custom/__pycache__/LN_database_connect.cpython-311.pyc b/leenkx/blender/lnx/logicnode/custom/__pycache__/LN_database_connect.cpython-311.pyc deleted file mode 100644 index caf35ab..0000000 Binary files a/leenkx/blender/lnx/logicnode/custom/__pycache__/LN_database_connect.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/custom/__pycache__/LN_draw_video.cpython-311.pyc b/leenkx/blender/lnx/logicnode/custom/__pycache__/LN_draw_video.cpython-311.pyc deleted file mode 100644 index 84b5862..0000000 Binary files a/leenkx/blender/lnx/logicnode/custom/__pycache__/LN_draw_video.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/custom/__pycache__/LN_get_blob_url.cpython-311.pyc b/leenkx/blender/lnx/logicnode/custom/__pycache__/LN_get_blob_url.cpython-311.pyc deleted file mode 100644 index 84fa65a..0000000 Binary files a/leenkx/blender/lnx/logicnode/custom/__pycache__/LN_get_blob_url.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/custom/__pycache__/LN_get_element.cpython-311.pyc b/leenkx/blender/lnx/logicnode/custom/__pycache__/LN_get_element.cpython-311.pyc deleted file mode 100644 index 02aa757..0000000 Binary files a/leenkx/blender/lnx/logicnode/custom/__pycache__/LN_get_element.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/custom/__pycache__/LN_get_element_property.cpython-311.pyc b/leenkx/blender/lnx/logicnode/custom/__pycache__/LN_get_element_property.cpython-311.pyc deleted file mode 100644 index aad6e07..0000000 Binary files a/leenkx/blender/lnx/logicnode/custom/__pycache__/LN_get_element_property.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/custom/__pycache__/LN_get_js_object_property.cpython-311.pyc b/leenkx/blender/lnx/logicnode/custom/__pycache__/LN_get_js_object_property.cpython-311.pyc deleted file mode 100644 index 49fa712..0000000 Binary files a/leenkx/blender/lnx/logicnode/custom/__pycache__/LN_get_js_object_property.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/custom/__pycache__/LN_html_dom_object.cpython-311.pyc b/leenkx/blender/lnx/logicnode/custom/__pycache__/LN_html_dom_object.cpython-311.pyc deleted file mode 100644 index 5938a8f..0000000 Binary files a/leenkx/blender/lnx/logicnode/custom/__pycache__/LN_html_dom_object.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/custom/__pycache__/LN_html_text_block.cpython-311.pyc b/leenkx/blender/lnx/logicnode/custom/__pycache__/LN_html_text_block.cpython-311.pyc deleted file mode 100644 index a0ce79c..0000000 Binary files a/leenkx/blender/lnx/logicnode/custom/__pycache__/LN_html_text_block.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/custom/__pycache__/LN_js_event_target.cpython-311.pyc b/leenkx/blender/lnx/logicnode/custom/__pycache__/LN_js_event_target.cpython-311.pyc deleted file mode 100644 index c7376da..0000000 Binary files a/leenkx/blender/lnx/logicnode/custom/__pycache__/LN_js_event_target.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/custom/__pycache__/LN_leenkx_close_connection.cpython-311.pyc b/leenkx/blender/lnx/logicnode/custom/__pycache__/LN_leenkx_close_connection.cpython-311.pyc deleted file mode 100644 index c67ab7d..0000000 Binary files a/leenkx/blender/lnx/logicnode/custom/__pycache__/LN_leenkx_close_connection.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/custom/__pycache__/LN_leenkx_event.cpython-311.pyc b/leenkx/blender/lnx/logicnode/custom/__pycache__/LN_leenkx_event.cpython-311.pyc deleted file mode 100644 index 5545844..0000000 Binary files a/leenkx/blender/lnx/logicnode/custom/__pycache__/LN_leenkx_event.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/custom/__pycache__/LN_leenkx_message_parser.cpython-311.pyc b/leenkx/blender/lnx/logicnode/custom/__pycache__/LN_leenkx_message_parser.cpython-311.pyc deleted file mode 100644 index a64a723..0000000 Binary files a/leenkx/blender/lnx/logicnode/custom/__pycache__/LN_leenkx_message_parser.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/custom/__pycache__/LN_leenkx_send_message.cpython-311.pyc b/leenkx/blender/lnx/logicnode/custom/__pycache__/LN_leenkx_send_message.cpython-311.pyc deleted file mode 100644 index 7e87c9b..0000000 Binary files a/leenkx/blender/lnx/logicnode/custom/__pycache__/LN_leenkx_send_message.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/custom/__pycache__/LN_load_wasm.cpython-311.pyc b/leenkx/blender/lnx/logicnode/custom/__pycache__/LN_load_wasm.cpython-311.pyc deleted file mode 100644 index 728bc78..0000000 Binary files a/leenkx/blender/lnx/logicnode/custom/__pycache__/LN_load_wasm.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/custom/__pycache__/LN_render_element.cpython-311.pyc b/leenkx/blender/lnx/logicnode/custom/__pycache__/LN_render_element.cpython-311.pyc deleted file mode 100644 index 0505e5b..0000000 Binary files a/leenkx/blender/lnx/logicnode/custom/__pycache__/LN_render_element.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/custom/__pycache__/LN_run_javascript.cpython-311.pyc b/leenkx/blender/lnx/logicnode/custom/__pycache__/LN_run_javascript.cpython-311.pyc deleted file mode 100644 index 25ac2fd..0000000 Binary files a/leenkx/blender/lnx/logicnode/custom/__pycache__/LN_run_javascript.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/custom/__pycache__/LN_seed_torrent.cpython-311.pyc b/leenkx/blender/lnx/logicnode/custom/__pycache__/LN_seed_torrent.cpython-311.pyc deleted file mode 100644 index 6d19d54..0000000 Binary files a/leenkx/blender/lnx/logicnode/custom/__pycache__/LN_seed_torrent.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/custom/__pycache__/LN_set_element_data.cpython-311.pyc b/leenkx/blender/lnx/logicnode/custom/__pycache__/LN_set_element_data.cpython-311.pyc deleted file mode 100644 index a148548..0000000 Binary files a/leenkx/blender/lnx/logicnode/custom/__pycache__/LN_set_element_data.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/custom/__pycache__/LN_target_type.cpython-311.pyc b/leenkx/blender/lnx/logicnode/custom/__pycache__/LN_target_type.cpython-311.pyc deleted file mode 100644 index e5ebd05..0000000 Binary files a/leenkx/blender/lnx/logicnode/custom/__pycache__/LN_target_type.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/custom/__pycache__/LN_text_block.cpython-311.pyc b/leenkx/blender/lnx/logicnode/custom/__pycache__/LN_text_block.cpython-311.pyc deleted file mode 100644 index 995759e..0000000 Binary files a/leenkx/blender/lnx/logicnode/custom/__pycache__/LN_text_block.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/custom/__pycache__/LN_touch_pad.cpython-311.pyc b/leenkx/blender/lnx/logicnode/custom/__pycache__/LN_touch_pad.cpython-311.pyc deleted file mode 100644 index 259a0f9..0000000 Binary files a/leenkx/blender/lnx/logicnode/custom/__pycache__/LN_touch_pad.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/custom/__pycache__/__init__.cpython-311.pyc b/leenkx/blender/lnx/logicnode/custom/__pycache__/__init__.cpython-311.pyc deleted file mode 100644 index 83e9f31..0000000 Binary files a/leenkx/blender/lnx/logicnode/custom/__pycache__/__init__.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/deprecated/__pycache__/LN_get_mouse_lock.cpython-311.pyc b/leenkx/blender/lnx/logicnode/deprecated/__pycache__/LN_get_mouse_lock.cpython-311.pyc deleted file mode 100644 index ec13a11..0000000 Binary files a/leenkx/blender/lnx/logicnode/deprecated/__pycache__/LN_get_mouse_lock.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/deprecated/__pycache__/LN_get_mouse_visible.cpython-311.pyc b/leenkx/blender/lnx/logicnode/deprecated/__pycache__/LN_get_mouse_visible.cpython-311.pyc deleted file mode 100644 index 6be2c40..0000000 Binary files a/leenkx/blender/lnx/logicnode/deprecated/__pycache__/LN_get_mouse_visible.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/deprecated/__pycache__/LN_group_nodes.cpython-311.pyc b/leenkx/blender/lnx/logicnode/deprecated/__pycache__/LN_group_nodes.cpython-311.pyc deleted file mode 100644 index c353dda..0000000 Binary files a/leenkx/blender/lnx/logicnode/deprecated/__pycache__/LN_group_nodes.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/deprecated/__pycache__/LN_mouse_coords.cpython-311.pyc b/leenkx/blender/lnx/logicnode/deprecated/__pycache__/LN_mouse_coords.cpython-311.pyc deleted file mode 100644 index 49640a5..0000000 Binary files a/leenkx/blender/lnx/logicnode/deprecated/__pycache__/LN_mouse_coords.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/deprecated/__pycache__/LN_on_gamepad.cpython-311.pyc b/leenkx/blender/lnx/logicnode/deprecated/__pycache__/LN_on_gamepad.cpython-311.pyc deleted file mode 100644 index d85fd60..0000000 Binary files a/leenkx/blender/lnx/logicnode/deprecated/__pycache__/LN_on_gamepad.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/deprecated/__pycache__/LN_on_keyboard.cpython-311.pyc b/leenkx/blender/lnx/logicnode/deprecated/__pycache__/LN_on_keyboard.cpython-311.pyc deleted file mode 100644 index b154627..0000000 Binary files a/leenkx/blender/lnx/logicnode/deprecated/__pycache__/LN_on_keyboard.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/deprecated/__pycache__/LN_on_mouse.cpython-311.pyc b/leenkx/blender/lnx/logicnode/deprecated/__pycache__/LN_on_mouse.cpython-311.pyc deleted file mode 100644 index 32c706b..0000000 Binary files a/leenkx/blender/lnx/logicnode/deprecated/__pycache__/LN_on_mouse.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/deprecated/__pycache__/LN_on_surface.cpython-311.pyc b/leenkx/blender/lnx/logicnode/deprecated/__pycache__/LN_on_surface.cpython-311.pyc deleted file mode 100644 index 4811cde..0000000 Binary files a/leenkx/blender/lnx/logicnode/deprecated/__pycache__/LN_on_surface.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/deprecated/__pycache__/LN_on_virtual_button.cpython-311.pyc b/leenkx/blender/lnx/logicnode/deprecated/__pycache__/LN_on_virtual_button.cpython-311.pyc deleted file mode 100644 index fc12521..0000000 Binary files a/leenkx/blender/lnx/logicnode/deprecated/__pycache__/LN_on_virtual_button.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/deprecated/__pycache__/LN_pause_action.cpython-311.pyc b/leenkx/blender/lnx/logicnode/deprecated/__pycache__/LN_pause_action.cpython-311.pyc deleted file mode 100644 index 840bbbb..0000000 Binary files a/leenkx/blender/lnx/logicnode/deprecated/__pycache__/LN_pause_action.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/deprecated/__pycache__/LN_pause_tilesheet.cpython-311.pyc b/leenkx/blender/lnx/logicnode/deprecated/__pycache__/LN_pause_tilesheet.cpython-311.pyc deleted file mode 100644 index 466deea..0000000 Binary files a/leenkx/blender/lnx/logicnode/deprecated/__pycache__/LN_pause_tilesheet.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/deprecated/__pycache__/LN_pause_trait.cpython-311.pyc b/leenkx/blender/lnx/logicnode/deprecated/__pycache__/LN_pause_trait.cpython-311.pyc deleted file mode 100644 index c944e00..0000000 Binary files a/leenkx/blender/lnx/logicnode/deprecated/__pycache__/LN_pause_trait.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/deprecated/__pycache__/LN_play_action.cpython-311.pyc b/leenkx/blender/lnx/logicnode/deprecated/__pycache__/LN_play_action.cpython-311.pyc deleted file mode 100644 index 45bd99f..0000000 Binary files a/leenkx/blender/lnx/logicnode/deprecated/__pycache__/LN_play_action.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/deprecated/__pycache__/LN_quaternion.cpython-311.pyc b/leenkx/blender/lnx/logicnode/deprecated/__pycache__/LN_quaternion.cpython-311.pyc deleted file mode 100644 index c3847cb..0000000 Binary files a/leenkx/blender/lnx/logicnode/deprecated/__pycache__/LN_quaternion.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/deprecated/__pycache__/LN_resume_action.cpython-311.pyc b/leenkx/blender/lnx/logicnode/deprecated/__pycache__/LN_resume_action.cpython-311.pyc deleted file mode 100644 index 6f8afa3..0000000 Binary files a/leenkx/blender/lnx/logicnode/deprecated/__pycache__/LN_resume_action.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/deprecated/__pycache__/LN_resume_tilesheet.cpython-311.pyc b/leenkx/blender/lnx/logicnode/deprecated/__pycache__/LN_resume_tilesheet.cpython-311.pyc deleted file mode 100644 index 13ba27c..0000000 Binary files a/leenkx/blender/lnx/logicnode/deprecated/__pycache__/LN_resume_tilesheet.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/deprecated/__pycache__/LN_resume_trait.cpython-311.pyc b/leenkx/blender/lnx/logicnode/deprecated/__pycache__/LN_resume_trait.cpython-311.pyc deleted file mode 100644 index e9c8509..0000000 Binary files a/leenkx/blender/lnx/logicnode/deprecated/__pycache__/LN_resume_trait.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/deprecated/__pycache__/LN_rotate_object_around_axis.cpython-311.pyc b/leenkx/blender/lnx/logicnode/deprecated/__pycache__/LN_rotate_object_around_axis.cpython-311.pyc deleted file mode 100644 index d9208d7..0000000 Binary files a/leenkx/blender/lnx/logicnode/deprecated/__pycache__/LN_rotate_object_around_axis.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/deprecated/__pycache__/LN_scale_object.cpython-311.pyc b/leenkx/blender/lnx/logicnode/deprecated/__pycache__/LN_scale_object.cpython-311.pyc deleted file mode 100644 index 9eed073..0000000 Binary files a/leenkx/blender/lnx/logicnode/deprecated/__pycache__/LN_scale_object.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/deprecated/__pycache__/LN_separate_quaternion.cpython-311.pyc b/leenkx/blender/lnx/logicnode/deprecated/__pycache__/LN_separate_quaternion.cpython-311.pyc deleted file mode 100644 index a329604..0000000 Binary files a/leenkx/blender/lnx/logicnode/deprecated/__pycache__/LN_separate_quaternion.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/deprecated/__pycache__/LN_set_canvas_progress_bar_color.cpython-311.pyc b/leenkx/blender/lnx/logicnode/deprecated/__pycache__/LN_set_canvas_progress_bar_color.cpython-311.pyc deleted file mode 100644 index 83afb46..0000000 Binary files a/leenkx/blender/lnx/logicnode/deprecated/__pycache__/LN_set_canvas_progress_bar_color.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/deprecated/__pycache__/LN_set_canvas_text_color.cpython-311.pyc b/leenkx/blender/lnx/logicnode/deprecated/__pycache__/LN_set_canvas_text_color.cpython-311.pyc deleted file mode 100644 index 6834eb0..0000000 Binary files a/leenkx/blender/lnx/logicnode/deprecated/__pycache__/LN_set_canvas_text_color.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/deprecated/__pycache__/LN_set_mouse_lock.cpython-311.pyc b/leenkx/blender/lnx/logicnode/deprecated/__pycache__/LN_set_mouse_lock.cpython-311.pyc deleted file mode 100644 index d7961bd..0000000 Binary files a/leenkx/blender/lnx/logicnode/deprecated/__pycache__/LN_set_mouse_lock.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/deprecated/__pycache__/LN_set_mouse_visible.cpython-311.pyc b/leenkx/blender/lnx/logicnode/deprecated/__pycache__/LN_set_mouse_visible.cpython-311.pyc deleted file mode 100644 index ddb140d..0000000 Binary files a/leenkx/blender/lnx/logicnode/deprecated/__pycache__/LN_set_mouse_visible.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/deprecated/__pycache__/LN_set_object_material.cpython-311.pyc b/leenkx/blender/lnx/logicnode/deprecated/__pycache__/LN_set_object_material.cpython-311.pyc deleted file mode 100644 index 7874b2d..0000000 Binary files a/leenkx/blender/lnx/logicnode/deprecated/__pycache__/LN_set_object_material.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/deprecated/__pycache__/LN_surface_coords.cpython-311.pyc b/leenkx/blender/lnx/logicnode/deprecated/__pycache__/LN_surface_coords.cpython-311.pyc deleted file mode 100644 index a340047..0000000 Binary files a/leenkx/blender/lnx/logicnode/deprecated/__pycache__/LN_surface_coords.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/deprecated/__pycache__/__init__.cpython-311.pyc b/leenkx/blender/lnx/logicnode/deprecated/__pycache__/__init__.cpython-311.pyc deleted file mode 100644 index 684160a..0000000 Binary files a/leenkx/blender/lnx/logicnode/deprecated/__pycache__/__init__.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/draw/__pycache__/LN_draw_Text_Area_string.cpython-311.pyc b/leenkx/blender/lnx/logicnode/draw/__pycache__/LN_draw_Text_Area_string.cpython-311.pyc deleted file mode 100644 index 8c375f7..0000000 Binary files a/leenkx/blender/lnx/logicnode/draw/__pycache__/LN_draw_Text_Area_string.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/draw/__pycache__/LN_draw_arc.cpython-311.pyc b/leenkx/blender/lnx/logicnode/draw/__pycache__/LN_draw_arc.cpython-311.pyc deleted file mode 100644 index cad4fb4..0000000 Binary files a/leenkx/blender/lnx/logicnode/draw/__pycache__/LN_draw_arc.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/draw/__pycache__/LN_draw_camera.cpython-311.pyc b/leenkx/blender/lnx/logicnode/draw/__pycache__/LN_draw_camera.cpython-311.pyc deleted file mode 100644 index 0627cef..0000000 Binary files a/leenkx/blender/lnx/logicnode/draw/__pycache__/LN_draw_camera.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/draw/__pycache__/LN_draw_camera_texture.cpython-311.pyc b/leenkx/blender/lnx/logicnode/draw/__pycache__/LN_draw_camera_texture.cpython-311.pyc deleted file mode 100644 index 4407edf..0000000 Binary files a/leenkx/blender/lnx/logicnode/draw/__pycache__/LN_draw_camera_texture.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/draw/__pycache__/LN_draw_circle.cpython-311.pyc b/leenkx/blender/lnx/logicnode/draw/__pycache__/LN_draw_circle.cpython-311.pyc deleted file mode 100644 index 685bd38..0000000 Binary files a/leenkx/blender/lnx/logicnode/draw/__pycache__/LN_draw_circle.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/draw/__pycache__/LN_draw_curve.cpython-311.pyc b/leenkx/blender/lnx/logicnode/draw/__pycache__/LN_draw_curve.cpython-311.pyc deleted file mode 100644 index 571e9cd..0000000 Binary files a/leenkx/blender/lnx/logicnode/draw/__pycache__/LN_draw_curve.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/draw/__pycache__/LN_draw_ellipse.cpython-311.pyc b/leenkx/blender/lnx/logicnode/draw/__pycache__/LN_draw_ellipse.cpython-311.pyc deleted file mode 100644 index a9a22f5..0000000 Binary files a/leenkx/blender/lnx/logicnode/draw/__pycache__/LN_draw_ellipse.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/draw/__pycache__/LN_draw_image.cpython-311.pyc b/leenkx/blender/lnx/logicnode/draw/__pycache__/LN_draw_image.cpython-311.pyc deleted file mode 100644 index ec4b0b0..0000000 Binary files a/leenkx/blender/lnx/logicnode/draw/__pycache__/LN_draw_image.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/draw/__pycache__/LN_draw_image_sequence.cpython-311.pyc b/leenkx/blender/lnx/logicnode/draw/__pycache__/LN_draw_image_sequence.cpython-311.pyc deleted file mode 100644 index 30d901f..0000000 Binary files a/leenkx/blender/lnx/logicnode/draw/__pycache__/LN_draw_image_sequence.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/draw/__pycache__/LN_draw_line.cpython-311.pyc b/leenkx/blender/lnx/logicnode/draw/__pycache__/LN_draw_line.cpython-311.pyc deleted file mode 100644 index 80ae926..0000000 Binary files a/leenkx/blender/lnx/logicnode/draw/__pycache__/LN_draw_line.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/draw/__pycache__/LN_draw_polygon.cpython-311.pyc b/leenkx/blender/lnx/logicnode/draw/__pycache__/LN_draw_polygon.cpython-311.pyc deleted file mode 100644 index b77bf7a..0000000 Binary files a/leenkx/blender/lnx/logicnode/draw/__pycache__/LN_draw_polygon.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/draw/__pycache__/LN_draw_polygon_from_array.cpython-311.pyc b/leenkx/blender/lnx/logicnode/draw/__pycache__/LN_draw_polygon_from_array.cpython-311.pyc deleted file mode 100644 index e330122..0000000 Binary files a/leenkx/blender/lnx/logicnode/draw/__pycache__/LN_draw_polygon_from_array.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/draw/__pycache__/LN_draw_rect.cpython-311.pyc b/leenkx/blender/lnx/logicnode/draw/__pycache__/LN_draw_rect.cpython-311.pyc deleted file mode 100644 index b2854f3..0000000 Binary files a/leenkx/blender/lnx/logicnode/draw/__pycache__/LN_draw_rect.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/draw/__pycache__/LN_draw_rounded_rect.cpython-311.pyc b/leenkx/blender/lnx/logicnode/draw/__pycache__/LN_draw_rounded_rect.cpython-311.pyc deleted file mode 100644 index dd2759b..0000000 Binary files a/leenkx/blender/lnx/logicnode/draw/__pycache__/LN_draw_rounded_rect.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/draw/__pycache__/LN_draw_string.cpython-311.pyc b/leenkx/blender/lnx/logicnode/draw/__pycache__/LN_draw_string.cpython-311.pyc deleted file mode 100644 index e575847..0000000 Binary files a/leenkx/blender/lnx/logicnode/draw/__pycache__/LN_draw_string.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/draw/__pycache__/LN_draw_sub_image.cpython-311.pyc b/leenkx/blender/lnx/logicnode/draw/__pycache__/LN_draw_sub_image.cpython-311.pyc deleted file mode 100644 index 1e9593b..0000000 Binary files a/leenkx/blender/lnx/logicnode/draw/__pycache__/LN_draw_sub_image.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/draw/__pycache__/LN_draw_to_material_image.cpython-311.pyc b/leenkx/blender/lnx/logicnode/draw/__pycache__/LN_draw_to_material_image.cpython-311.pyc deleted file mode 100644 index 69bc2ec..0000000 Binary files a/leenkx/blender/lnx/logicnode/draw/__pycache__/LN_draw_to_material_image.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/draw/__pycache__/LN_draw_triangle.cpython-311.pyc b/leenkx/blender/lnx/logicnode/draw/__pycache__/LN_draw_triangle.cpython-311.pyc deleted file mode 100644 index 2e00f1d..0000000 Binary files a/leenkx/blender/lnx/logicnode/draw/__pycache__/LN_draw_triangle.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/draw/__pycache__/__init__.cpython-311.pyc b/leenkx/blender/lnx/logicnode/draw/__pycache__/__init__.cpython-311.pyc deleted file mode 100644 index 3c2e6a3..0000000 Binary files a/leenkx/blender/lnx/logicnode/draw/__pycache__/__init__.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/event/__pycache__/LN_on_application_state.cpython-311.pyc b/leenkx/blender/lnx/logicnode/event/__pycache__/LN_on_application_state.cpython-311.pyc deleted file mode 100644 index 35f3fd0..0000000 Binary files a/leenkx/blender/lnx/logicnode/event/__pycache__/LN_on_application_state.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/event/__pycache__/LN_on_event.cpython-311.pyc b/leenkx/blender/lnx/logicnode/event/__pycache__/LN_on_event.cpython-311.pyc deleted file mode 100644 index 063a239..0000000 Binary files a/leenkx/blender/lnx/logicnode/event/__pycache__/LN_on_event.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/event/__pycache__/LN_on_init.cpython-311.pyc b/leenkx/blender/lnx/logicnode/event/__pycache__/LN_on_init.cpython-311.pyc deleted file mode 100644 index 71b4960..0000000 Binary files a/leenkx/blender/lnx/logicnode/event/__pycache__/LN_on_init.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/event/__pycache__/LN_on_remove.cpython-311.pyc b/leenkx/blender/lnx/logicnode/event/__pycache__/LN_on_remove.cpython-311.pyc deleted file mode 100644 index a8f7956..0000000 Binary files a/leenkx/blender/lnx/logicnode/event/__pycache__/LN_on_remove.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/event/__pycache__/LN_on_render2d.cpython-311.pyc b/leenkx/blender/lnx/logicnode/event/__pycache__/LN_on_render2d.cpython-311.pyc deleted file mode 100644 index 23023cb..0000000 Binary files a/leenkx/blender/lnx/logicnode/event/__pycache__/LN_on_render2d.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/event/__pycache__/LN_on_timer.cpython-311.pyc b/leenkx/blender/lnx/logicnode/event/__pycache__/LN_on_timer.cpython-311.pyc deleted file mode 100644 index d5df6ba..0000000 Binary files a/leenkx/blender/lnx/logicnode/event/__pycache__/LN_on_timer.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/event/__pycache__/LN_on_update.cpython-311.pyc b/leenkx/blender/lnx/logicnode/event/__pycache__/LN_on_update.cpython-311.pyc deleted file mode 100644 index aaf8afb..0000000 Binary files a/leenkx/blender/lnx/logicnode/event/__pycache__/LN_on_update.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/event/__pycache__/LN_send_event_to_object.cpython-311.pyc b/leenkx/blender/lnx/logicnode/event/__pycache__/LN_send_event_to_object.cpython-311.pyc deleted file mode 100644 index f7c4eb7..0000000 Binary files a/leenkx/blender/lnx/logicnode/event/__pycache__/LN_send_event_to_object.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/event/__pycache__/LN_send_global_event.cpython-311.pyc b/leenkx/blender/lnx/logicnode/event/__pycache__/LN_send_global_event.cpython-311.pyc deleted file mode 100644 index aebf4d5..0000000 Binary files a/leenkx/blender/lnx/logicnode/event/__pycache__/LN_send_global_event.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/event/__pycache__/__init__.cpython-311.pyc b/leenkx/blender/lnx/logicnode/event/__pycache__/__init__.cpython-311.pyc deleted file mode 100644 index 814f8d8..0000000 Binary files a/leenkx/blender/lnx/logicnode/event/__pycache__/__init__.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/input/__pycache__/LN_cursor_in_region.cpython-311.pyc b/leenkx/blender/lnx/logicnode/input/__pycache__/LN_cursor_in_region.cpython-311.pyc deleted file mode 100644 index 754a016..0000000 Binary files a/leenkx/blender/lnx/logicnode/input/__pycache__/LN_cursor_in_region.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/input/__pycache__/LN_gamepad.cpython-311.pyc b/leenkx/blender/lnx/logicnode/input/__pycache__/LN_gamepad.cpython-311.pyc deleted file mode 100644 index cc74dde..0000000 Binary files a/leenkx/blender/lnx/logicnode/input/__pycache__/LN_gamepad.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/input/__pycache__/LN_gamepad_coords.cpython-311.pyc b/leenkx/blender/lnx/logicnode/input/__pycache__/LN_gamepad_coords.cpython-311.pyc deleted file mode 100644 index 75f2121..0000000 Binary files a/leenkx/blender/lnx/logicnode/input/__pycache__/LN_gamepad_coords.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/input/__pycache__/LN_gamepad_sticks.cpython-311.pyc b/leenkx/blender/lnx/logicnode/input/__pycache__/LN_gamepad_sticks.cpython-311.pyc deleted file mode 100644 index 3b6cac1..0000000 Binary files a/leenkx/blender/lnx/logicnode/input/__pycache__/LN_gamepad_sticks.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/input/__pycache__/LN_get_cursor_location.cpython-311.pyc b/leenkx/blender/lnx/logicnode/input/__pycache__/LN_get_cursor_location.cpython-311.pyc deleted file mode 100644 index b538e5a..0000000 Binary files a/leenkx/blender/lnx/logicnode/input/__pycache__/LN_get_cursor_location.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/input/__pycache__/LN_get_cursor_state.cpython-311.pyc b/leenkx/blender/lnx/logicnode/input/__pycache__/LN_get_cursor_state.cpython-311.pyc deleted file mode 100644 index eed98d0..0000000 Binary files a/leenkx/blender/lnx/logicnode/input/__pycache__/LN_get_cursor_state.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/input/__pycache__/LN_get_gamepad_started.cpython-311.pyc b/leenkx/blender/lnx/logicnode/input/__pycache__/LN_get_gamepad_started.cpython-311.pyc deleted file mode 100644 index b68f437..0000000 Binary files a/leenkx/blender/lnx/logicnode/input/__pycache__/LN_get_gamepad_started.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/input/__pycache__/LN_get_input_map_key.cpython-311.pyc b/leenkx/blender/lnx/logicnode/input/__pycache__/LN_get_input_map_key.cpython-311.pyc deleted file mode 100644 index 0751e6a..0000000 Binary files a/leenkx/blender/lnx/logicnode/input/__pycache__/LN_get_input_map_key.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/input/__pycache__/LN_get_keyboard_started.cpython-311.pyc b/leenkx/blender/lnx/logicnode/input/__pycache__/LN_get_keyboard_started.cpython-311.pyc deleted file mode 100644 index d54da29..0000000 Binary files a/leenkx/blender/lnx/logicnode/input/__pycache__/LN_get_keyboard_started.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/input/__pycache__/LN_get_mouse_movement.cpython-311.pyc b/leenkx/blender/lnx/logicnode/input/__pycache__/LN_get_mouse_movement.cpython-311.pyc deleted file mode 100644 index 1adfa07..0000000 Binary files a/leenkx/blender/lnx/logicnode/input/__pycache__/LN_get_mouse_movement.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/input/__pycache__/LN_get_mouse_started.cpython-311.pyc b/leenkx/blender/lnx/logicnode/input/__pycache__/LN_get_mouse_started.cpython-311.pyc deleted file mode 100644 index 3cc9b6c..0000000 Binary files a/leenkx/blender/lnx/logicnode/input/__pycache__/LN_get_mouse_started.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/input/__pycache__/LN_get_touch_location.cpython-311.pyc b/leenkx/blender/lnx/logicnode/input/__pycache__/LN_get_touch_location.cpython-311.pyc deleted file mode 100644 index b79b372..0000000 Binary files a/leenkx/blender/lnx/logicnode/input/__pycache__/LN_get_touch_location.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/input/__pycache__/LN_get_touch_movement.cpython-311.pyc b/leenkx/blender/lnx/logicnode/input/__pycache__/LN_get_touch_movement.cpython-311.pyc deleted file mode 100644 index 1e79bfa..0000000 Binary files a/leenkx/blender/lnx/logicnode/input/__pycache__/LN_get_touch_movement.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/input/__pycache__/LN_keyboard.cpython-311.pyc b/leenkx/blender/lnx/logicnode/input/__pycache__/LN_keyboard.cpython-311.pyc deleted file mode 100644 index b1da138..0000000 Binary files a/leenkx/blender/lnx/logicnode/input/__pycache__/LN_keyboard.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/input/__pycache__/LN_mouse.cpython-311.pyc b/leenkx/blender/lnx/logicnode/input/__pycache__/LN_mouse.cpython-311.pyc deleted file mode 100644 index c2f7d0d..0000000 Binary files a/leenkx/blender/lnx/logicnode/input/__pycache__/LN_mouse.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/input/__pycache__/LN_on_input_map.cpython-311.pyc b/leenkx/blender/lnx/logicnode/input/__pycache__/LN_on_input_map.cpython-311.pyc deleted file mode 100644 index da6b93a..0000000 Binary files a/leenkx/blender/lnx/logicnode/input/__pycache__/LN_on_input_map.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/input/__pycache__/LN_on_swipe.cpython-311.pyc b/leenkx/blender/lnx/logicnode/input/__pycache__/LN_on_swipe.cpython-311.pyc deleted file mode 100644 index e0af0ec..0000000 Binary files a/leenkx/blender/lnx/logicnode/input/__pycache__/LN_on_swipe.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/input/__pycache__/LN_on_tap_screen.cpython-311.pyc b/leenkx/blender/lnx/logicnode/input/__pycache__/LN_on_tap_screen.cpython-311.pyc deleted file mode 100644 index b6dd7a2..0000000 Binary files a/leenkx/blender/lnx/logicnode/input/__pycache__/LN_on_tap_screen.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/input/__pycache__/LN_remove_input_map_key.cpython-311.pyc b/leenkx/blender/lnx/logicnode/input/__pycache__/LN_remove_input_map_key.cpython-311.pyc deleted file mode 100644 index 890a1e5..0000000 Binary files a/leenkx/blender/lnx/logicnode/input/__pycache__/LN_remove_input_map_key.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/input/__pycache__/LN_sensor_coords.cpython-311.pyc b/leenkx/blender/lnx/logicnode/input/__pycache__/LN_sensor_coords.cpython-311.pyc deleted file mode 100644 index 7aeb677..0000000 Binary files a/leenkx/blender/lnx/logicnode/input/__pycache__/LN_sensor_coords.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/input/__pycache__/LN_set_cursor_state.cpython-311.pyc b/leenkx/blender/lnx/logicnode/input/__pycache__/LN_set_cursor_state.cpython-311.pyc deleted file mode 100644 index 60d2a72..0000000 Binary files a/leenkx/blender/lnx/logicnode/input/__pycache__/LN_set_cursor_state.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/input/__pycache__/LN_set_input_map_key.cpython-311.pyc b/leenkx/blender/lnx/logicnode/input/__pycache__/LN_set_input_map_key.cpython-311.pyc deleted file mode 100644 index dbb46ba..0000000 Binary files a/leenkx/blender/lnx/logicnode/input/__pycache__/LN_set_input_map_key.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/input/__pycache__/LN_touch.cpython-311.pyc b/leenkx/blender/lnx/logicnode/input/__pycache__/LN_touch.cpython-311.pyc deleted file mode 100644 index 743414b..0000000 Binary files a/leenkx/blender/lnx/logicnode/input/__pycache__/LN_touch.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/input/__pycache__/LN_touch_in_region.cpython-311.pyc b/leenkx/blender/lnx/logicnode/input/__pycache__/LN_touch_in_region.cpython-311.pyc deleted file mode 100644 index ee573d9..0000000 Binary files a/leenkx/blender/lnx/logicnode/input/__pycache__/LN_touch_in_region.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/input/__pycache__/LN_virtual_button.cpython-311.pyc b/leenkx/blender/lnx/logicnode/input/__pycache__/LN_virtual_button.cpython-311.pyc deleted file mode 100644 index 254fc9d..0000000 Binary files a/leenkx/blender/lnx/logicnode/input/__pycache__/LN_virtual_button.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/input/__pycache__/__init__.cpython-311.pyc b/leenkx/blender/lnx/logicnode/input/__pycache__/__init__.cpython-311.pyc deleted file mode 100644 index ee2adec..0000000 Binary files a/leenkx/blender/lnx/logicnode/input/__pycache__/__init__.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/light/__pycache__/LN_set_area_light_size.cpython-311.pyc b/leenkx/blender/lnx/logicnode/light/__pycache__/LN_set_area_light_size.cpython-311.pyc deleted file mode 100644 index b8616e7..0000000 Binary files a/leenkx/blender/lnx/logicnode/light/__pycache__/LN_set_area_light_size.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/light/__pycache__/LN_set_light_color.cpython-311.pyc b/leenkx/blender/lnx/logicnode/light/__pycache__/LN_set_light_color.cpython-311.pyc deleted file mode 100644 index 0055a12..0000000 Binary files a/leenkx/blender/lnx/logicnode/light/__pycache__/LN_set_light_color.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/light/__pycache__/LN_set_light_strength.cpython-311.pyc b/leenkx/blender/lnx/logicnode/light/__pycache__/LN_set_light_strength.cpython-311.pyc deleted file mode 100644 index c05e6a6..0000000 Binary files a/leenkx/blender/lnx/logicnode/light/__pycache__/LN_set_light_strength.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/light/__pycache__/LN_set_spot_light_blend.cpython-311.pyc b/leenkx/blender/lnx/logicnode/light/__pycache__/LN_set_spot_light_blend.cpython-311.pyc deleted file mode 100644 index 5f2985f..0000000 Binary files a/leenkx/blender/lnx/logicnode/light/__pycache__/LN_set_spot_light_blend.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/light/__pycache__/LN_set_spot_light_size.cpython-311.pyc b/leenkx/blender/lnx/logicnode/light/__pycache__/LN_set_spot_light_size.cpython-311.pyc deleted file mode 100644 index c3fb161..0000000 Binary files a/leenkx/blender/lnx/logicnode/light/__pycache__/LN_set_spot_light_size.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/light/__pycache__/__init__.cpython-311.pyc b/leenkx/blender/lnx/logicnode/light/__pycache__/__init__.cpython-311.pyc deleted file mode 100644 index 2a1465b..0000000 Binary files a/leenkx/blender/lnx/logicnode/light/__pycache__/__init__.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/logic/__pycache__/LN_alternate_output.cpython-311.pyc b/leenkx/blender/lnx/logicnode/logic/__pycache__/LN_alternate_output.cpython-311.pyc deleted file mode 100644 index 028b2e1..0000000 Binary files a/leenkx/blender/lnx/logicnode/logic/__pycache__/LN_alternate_output.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/logic/__pycache__/LN_branch.cpython-311.pyc b/leenkx/blender/lnx/logicnode/logic/__pycache__/LN_branch.cpython-311.pyc deleted file mode 100644 index 6e0645e..0000000 Binary files a/leenkx/blender/lnx/logicnode/logic/__pycache__/LN_branch.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/logic/__pycache__/LN_call_function.cpython-311.pyc b/leenkx/blender/lnx/logicnode/logic/__pycache__/LN_call_function.cpython-311.pyc deleted file mode 100644 index 7625a92..0000000 Binary files a/leenkx/blender/lnx/logicnode/logic/__pycache__/LN_call_function.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/logic/__pycache__/LN_case_index.cpython-311.pyc b/leenkx/blender/lnx/logicnode/logic/__pycache__/LN_case_index.cpython-311.pyc deleted file mode 100644 index 650190b..0000000 Binary files a/leenkx/blender/lnx/logicnode/logic/__pycache__/LN_case_index.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/logic/__pycache__/LN_function.cpython-311.pyc b/leenkx/blender/lnx/logicnode/logic/__pycache__/LN_function.cpython-311.pyc deleted file mode 100644 index d831f12..0000000 Binary files a/leenkx/blender/lnx/logicnode/logic/__pycache__/LN_function.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/logic/__pycache__/LN_function_output.cpython-311.pyc b/leenkx/blender/lnx/logicnode/logic/__pycache__/LN_function_output.cpython-311.pyc deleted file mode 100644 index 27be834..0000000 Binary files a/leenkx/blender/lnx/logicnode/logic/__pycache__/LN_function_output.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/logic/__pycache__/LN_gate.cpython-311.pyc b/leenkx/blender/lnx/logicnode/logic/__pycache__/LN_gate.cpython-311.pyc deleted file mode 100644 index 4537c8f..0000000 Binary files a/leenkx/blender/lnx/logicnode/logic/__pycache__/LN_gate.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/logic/__pycache__/LN_get_camera_render_filter.cpython-311.pyc b/leenkx/blender/lnx/logicnode/logic/__pycache__/LN_get_camera_render_filter.cpython-311.pyc deleted file mode 100644 index 10a13cd..0000000 Binary files a/leenkx/blender/lnx/logicnode/logic/__pycache__/LN_get_camera_render_filter.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/logic/__pycache__/LN_invert_boolean.cpython-311.pyc b/leenkx/blender/lnx/logicnode/logic/__pycache__/LN_invert_boolean.cpython-311.pyc deleted file mode 100644 index 3520d3e..0000000 Binary files a/leenkx/blender/lnx/logicnode/logic/__pycache__/LN_invert_boolean.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/logic/__pycache__/LN_invert_output.cpython-311.pyc b/leenkx/blender/lnx/logicnode/logic/__pycache__/LN_invert_output.cpython-311.pyc deleted file mode 100644 index 6dee692..0000000 Binary files a/leenkx/blender/lnx/logicnode/logic/__pycache__/LN_invert_output.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/logic/__pycache__/LN_is_false.cpython-311.pyc b/leenkx/blender/lnx/logicnode/logic/__pycache__/LN_is_false.cpython-311.pyc deleted file mode 100644 index 5ed4734..0000000 Binary files a/leenkx/blender/lnx/logicnode/logic/__pycache__/LN_is_false.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/logic/__pycache__/LN_is_not_null.cpython-311.pyc b/leenkx/blender/lnx/logicnode/logic/__pycache__/LN_is_not_null.cpython-311.pyc deleted file mode 100644 index c6e39be..0000000 Binary files a/leenkx/blender/lnx/logicnode/logic/__pycache__/LN_is_not_null.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/logic/__pycache__/LN_is_null.cpython-311.pyc b/leenkx/blender/lnx/logicnode/logic/__pycache__/LN_is_null.cpython-311.pyc deleted file mode 100644 index 2d991cd..0000000 Binary files a/leenkx/blender/lnx/logicnode/logic/__pycache__/LN_is_null.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/logic/__pycache__/LN_is_true.cpython-311.pyc b/leenkx/blender/lnx/logicnode/logic/__pycache__/LN_is_true.cpython-311.pyc deleted file mode 100644 index 1db8a4d..0000000 Binary files a/leenkx/blender/lnx/logicnode/logic/__pycache__/LN_is_true.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/logic/__pycache__/LN_loop.cpython-311.pyc b/leenkx/blender/lnx/logicnode/logic/__pycache__/LN_loop.cpython-311.pyc deleted file mode 100644 index 8b7d806..0000000 Binary files a/leenkx/blender/lnx/logicnode/logic/__pycache__/LN_loop.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/logic/__pycache__/LN_loop_break.cpython-311.pyc b/leenkx/blender/lnx/logicnode/logic/__pycache__/LN_loop_break.cpython-311.pyc deleted file mode 100644 index cf87a8b..0000000 Binary files a/leenkx/blender/lnx/logicnode/logic/__pycache__/LN_loop_break.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/logic/__pycache__/LN_loop_continue.cpython-311.pyc b/leenkx/blender/lnx/logicnode/logic/__pycache__/LN_loop_continue.cpython-311.pyc deleted file mode 100644 index ee0ebf4..0000000 Binary files a/leenkx/blender/lnx/logicnode/logic/__pycache__/LN_loop_continue.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/logic/__pycache__/LN_merge.cpython-311.pyc b/leenkx/blender/lnx/logicnode/logic/__pycache__/LN_merge.cpython-311.pyc deleted file mode 100644 index 3f13da0..0000000 Binary files a/leenkx/blender/lnx/logicnode/logic/__pycache__/LN_merge.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/logic/__pycache__/LN_null.cpython-311.pyc b/leenkx/blender/lnx/logicnode/logic/__pycache__/LN_null.cpython-311.pyc deleted file mode 100644 index 747d879..0000000 Binary files a/leenkx/blender/lnx/logicnode/logic/__pycache__/LN_null.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/logic/__pycache__/LN_once_per_frame.cpython-311.pyc b/leenkx/blender/lnx/logicnode/logic/__pycache__/LN_once_per_frame.cpython-311.pyc deleted file mode 100644 index 1299a14..0000000 Binary files a/leenkx/blender/lnx/logicnode/logic/__pycache__/LN_once_per_frame.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/logic/__pycache__/LN_output_sequence.cpython-311.pyc b/leenkx/blender/lnx/logicnode/logic/__pycache__/LN_output_sequence.cpython-311.pyc deleted file mode 100644 index ec39c38..0000000 Binary files a/leenkx/blender/lnx/logicnode/logic/__pycache__/LN_output_sequence.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/logic/__pycache__/LN_output_to_boolean.cpython-311.pyc b/leenkx/blender/lnx/logicnode/logic/__pycache__/LN_output_to_boolean.cpython-311.pyc deleted file mode 100644 index 5d7e10f..0000000 Binary files a/leenkx/blender/lnx/logicnode/logic/__pycache__/LN_output_to_boolean.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/logic/__pycache__/LN_pulse.cpython-311.pyc b/leenkx/blender/lnx/logicnode/logic/__pycache__/LN_pulse.cpython-311.pyc deleted file mode 100644 index 0092dfe..0000000 Binary files a/leenkx/blender/lnx/logicnode/logic/__pycache__/LN_pulse.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/logic/__pycache__/LN_select.cpython-311.pyc b/leenkx/blender/lnx/logicnode/logic/__pycache__/LN_select.cpython-311.pyc deleted file mode 100644 index cc1efd4..0000000 Binary files a/leenkx/blender/lnx/logicnode/logic/__pycache__/LN_select.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/logic/__pycache__/LN_select_output.cpython-311.pyc b/leenkx/blender/lnx/logicnode/logic/__pycache__/LN_select_output.cpython-311.pyc deleted file mode 100644 index 71e1f0a..0000000 Binary files a/leenkx/blender/lnx/logicnode/logic/__pycache__/LN_select_output.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/logic/__pycache__/LN_set_camera_render_filter.cpython-311.pyc b/leenkx/blender/lnx/logicnode/logic/__pycache__/LN_set_camera_render_filter.cpython-311.pyc deleted file mode 100644 index 2ff7d64..0000000 Binary files a/leenkx/blender/lnx/logicnode/logic/__pycache__/LN_set_camera_render_filter.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/logic/__pycache__/LN_switch_output.cpython-311.pyc b/leenkx/blender/lnx/logicnode/logic/__pycache__/LN_switch_output.cpython-311.pyc deleted file mode 100644 index 2f2c760..0000000 Binary files a/leenkx/blender/lnx/logicnode/logic/__pycache__/LN_switch_output.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/logic/__pycache__/LN_value_changed.cpython-311.pyc b/leenkx/blender/lnx/logicnode/logic/__pycache__/LN_value_changed.cpython-311.pyc deleted file mode 100644 index e5e2b6f..0000000 Binary files a/leenkx/blender/lnx/logicnode/logic/__pycache__/LN_value_changed.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/logic/__pycache__/LN_wait_for.cpython-311.pyc b/leenkx/blender/lnx/logicnode/logic/__pycache__/LN_wait_for.cpython-311.pyc deleted file mode 100644 index 820dc68..0000000 Binary files a/leenkx/blender/lnx/logicnode/logic/__pycache__/LN_wait_for.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/logic/__pycache__/LN_while_true.cpython-311.pyc b/leenkx/blender/lnx/logicnode/logic/__pycache__/LN_while_true.cpython-311.pyc deleted file mode 100644 index 82d0ffb..0000000 Binary files a/leenkx/blender/lnx/logicnode/logic/__pycache__/LN_while_true.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/logic/__pycache__/__init__.cpython-311.pyc b/leenkx/blender/lnx/logicnode/logic/__pycache__/__init__.cpython-311.pyc deleted file mode 100644 index 0b37aab..0000000 Binary files a/leenkx/blender/lnx/logicnode/logic/__pycache__/__init__.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/map/__pycache__/LN_clear_map.cpython-311.pyc b/leenkx/blender/lnx/logicnode/map/__pycache__/LN_clear_map.cpython-311.pyc deleted file mode 100644 index 2bdb20e..0000000 Binary files a/leenkx/blender/lnx/logicnode/map/__pycache__/LN_clear_map.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/map/__pycache__/LN_create_map.cpython-311.pyc b/leenkx/blender/lnx/logicnode/map/__pycache__/LN_create_map.cpython-311.pyc deleted file mode 100644 index 411c8f4..0000000 Binary files a/leenkx/blender/lnx/logicnode/map/__pycache__/LN_create_map.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/map/__pycache__/LN_get_map_value.cpython-311.pyc b/leenkx/blender/lnx/logicnode/map/__pycache__/LN_get_map_value.cpython-311.pyc deleted file mode 100644 index 980400b..0000000 Binary files a/leenkx/blender/lnx/logicnode/map/__pycache__/LN_get_map_value.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/map/__pycache__/LN_json_parse.cpython-311.pyc b/leenkx/blender/lnx/logicnode/map/__pycache__/LN_json_parse.cpython-311.pyc deleted file mode 100644 index 06d9599..0000000 Binary files a/leenkx/blender/lnx/logicnode/map/__pycache__/LN_json_parse.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/map/__pycache__/LN_json_stringify.cpython-311.pyc b/leenkx/blender/lnx/logicnode/map/__pycache__/LN_json_stringify.cpython-311.pyc deleted file mode 100644 index c5d2c05..0000000 Binary files a/leenkx/blender/lnx/logicnode/map/__pycache__/LN_json_stringify.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/map/__pycache__/LN_map_key_exists.cpython-311.pyc b/leenkx/blender/lnx/logicnode/map/__pycache__/LN_map_key_exists.cpython-311.pyc deleted file mode 100644 index a7e5621..0000000 Binary files a/leenkx/blender/lnx/logicnode/map/__pycache__/LN_map_key_exists.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/map/__pycache__/LN_map_loop.cpython-311.pyc b/leenkx/blender/lnx/logicnode/map/__pycache__/LN_map_loop.cpython-311.pyc deleted file mode 100644 index 3c489e4..0000000 Binary files a/leenkx/blender/lnx/logicnode/map/__pycache__/LN_map_loop.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/map/__pycache__/LN_remove_map_key.cpython-311.pyc b/leenkx/blender/lnx/logicnode/map/__pycache__/LN_remove_map_key.cpython-311.pyc deleted file mode 100644 index 98e2964..0000000 Binary files a/leenkx/blender/lnx/logicnode/map/__pycache__/LN_remove_map_key.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/map/__pycache__/LN_set_map_from_array.cpython-311.pyc b/leenkx/blender/lnx/logicnode/map/__pycache__/LN_set_map_from_array.cpython-311.pyc deleted file mode 100644 index 044dbb6..0000000 Binary files a/leenkx/blender/lnx/logicnode/map/__pycache__/LN_set_map_from_array.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/map/__pycache__/LN_set_map_value.cpython-311.pyc b/leenkx/blender/lnx/logicnode/map/__pycache__/LN_set_map_value.cpython-311.pyc deleted file mode 100644 index a22d2cd..0000000 Binary files a/leenkx/blender/lnx/logicnode/map/__pycache__/LN_set_map_value.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/map/__pycache__/LN_string_map.cpython-311.pyc b/leenkx/blender/lnx/logicnode/map/__pycache__/LN_string_map.cpython-311.pyc deleted file mode 100644 index f9cd3b3..0000000 Binary files a/leenkx/blender/lnx/logicnode/map/__pycache__/LN_string_map.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/map/__pycache__/__init__.cpython-311.pyc b/leenkx/blender/lnx/logicnode/map/__pycache__/__init__.cpython-311.pyc deleted file mode 100644 index 5ba3efc..0000000 Binary files a/leenkx/blender/lnx/logicnode/map/__pycache__/__init__.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/material/__pycache__/LN_get_object_material.cpython-311.pyc b/leenkx/blender/lnx/logicnode/material/__pycache__/LN_get_object_material.cpython-311.pyc deleted file mode 100644 index c9257a3..0000000 Binary files a/leenkx/blender/lnx/logicnode/material/__pycache__/LN_get_object_material.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/material/__pycache__/LN_get_object_materials.cpython-311.pyc b/leenkx/blender/lnx/logicnode/material/__pycache__/LN_get_object_materials.cpython-311.pyc deleted file mode 100644 index 5b20d4f..0000000 Binary files a/leenkx/blender/lnx/logicnode/material/__pycache__/LN_get_object_materials.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/material/__pycache__/LN_material.cpython-311.pyc b/leenkx/blender/lnx/logicnode/material/__pycache__/LN_material.cpython-311.pyc deleted file mode 100644 index ec42dea..0000000 Binary files a/leenkx/blender/lnx/logicnode/material/__pycache__/LN_material.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/material/__pycache__/LN_set_material_image_param.cpython-311.pyc b/leenkx/blender/lnx/logicnode/material/__pycache__/LN_set_material_image_param.cpython-311.pyc deleted file mode 100644 index 5bc6081..0000000 Binary files a/leenkx/blender/lnx/logicnode/material/__pycache__/LN_set_material_image_param.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/material/__pycache__/LN_set_material_rgb_param.cpython-311.pyc b/leenkx/blender/lnx/logicnode/material/__pycache__/LN_set_material_rgb_param.cpython-311.pyc deleted file mode 100644 index 38e8f26..0000000 Binary files a/leenkx/blender/lnx/logicnode/material/__pycache__/LN_set_material_rgb_param.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/material/__pycache__/LN_set_material_value_param.cpython-311.pyc b/leenkx/blender/lnx/logicnode/material/__pycache__/LN_set_material_value_param.cpython-311.pyc deleted file mode 100644 index 9845e12..0000000 Binary files a/leenkx/blender/lnx/logicnode/material/__pycache__/LN_set_material_value_param.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/material/__pycache__/LN_set_object_material_filter_texture.cpython-311.pyc b/leenkx/blender/lnx/logicnode/material/__pycache__/LN_set_object_material_filter_texture.cpython-311.pyc deleted file mode 100644 index 11ef53c..0000000 Binary files a/leenkx/blender/lnx/logicnode/material/__pycache__/LN_set_object_material_filter_texture.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/material/__pycache__/LN_set_object_material_slot.cpython-311.pyc b/leenkx/blender/lnx/logicnode/material/__pycache__/LN_set_object_material_slot.cpython-311.pyc deleted file mode 100644 index c8dfc36..0000000 Binary files a/leenkx/blender/lnx/logicnode/material/__pycache__/LN_set_object_material_slot.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/material/__pycache__/__init__.cpython-311.pyc b/leenkx/blender/lnx/logicnode/material/__pycache__/__init__.cpython-311.pyc deleted file mode 100644 index cfacc6a..0000000 Binary files a/leenkx/blender/lnx/logicnode/material/__pycache__/__init__.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/math/__pycache__/LN_bitwise_math.cpython-311.pyc b/leenkx/blender/lnx/logicnode/math/__pycache__/LN_bitwise_math.cpython-311.pyc deleted file mode 100644 index 7c2b68f..0000000 Binary files a/leenkx/blender/lnx/logicnode/math/__pycache__/LN_bitwise_math.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/math/__pycache__/LN_clamp.cpython-311.pyc b/leenkx/blender/lnx/logicnode/math/__pycache__/LN_clamp.cpython-311.pyc deleted file mode 100644 index f9e59b1..0000000 Binary files a/leenkx/blender/lnx/logicnode/math/__pycache__/LN_clamp.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/math/__pycache__/LN_color_mix.cpython-311.pyc b/leenkx/blender/lnx/logicnode/math/__pycache__/LN_color_mix.cpython-311.pyc deleted file mode 100644 index 67de1df..0000000 Binary files a/leenkx/blender/lnx/logicnode/math/__pycache__/LN_color_mix.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/math/__pycache__/LN_combine_hsv.cpython-311.pyc b/leenkx/blender/lnx/logicnode/math/__pycache__/LN_combine_hsv.cpython-311.pyc deleted file mode 100644 index 49fec64..0000000 Binary files a/leenkx/blender/lnx/logicnode/math/__pycache__/LN_combine_hsv.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/math/__pycache__/LN_combine_rgb.cpython-311.pyc b/leenkx/blender/lnx/logicnode/math/__pycache__/LN_combine_rgb.cpython-311.pyc deleted file mode 100644 index f271f50..0000000 Binary files a/leenkx/blender/lnx/logicnode/math/__pycache__/LN_combine_rgb.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/math/__pycache__/LN_compare.cpython-311.pyc b/leenkx/blender/lnx/logicnode/math/__pycache__/LN_compare.cpython-311.pyc deleted file mode 100644 index 8159de4..0000000 Binary files a/leenkx/blender/lnx/logicnode/math/__pycache__/LN_compare.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/math/__pycache__/LN_deg_to_rad.cpython-311.pyc b/leenkx/blender/lnx/logicnode/math/__pycache__/LN_deg_to_rad.cpython-311.pyc deleted file mode 100644 index 2d21bf0..0000000 Binary files a/leenkx/blender/lnx/logicnode/math/__pycache__/LN_deg_to_rad.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/math/__pycache__/LN_distance_screen_to_world_space.cpython-311.pyc b/leenkx/blender/lnx/logicnode/math/__pycache__/LN_distance_screen_to_world_space.cpython-311.pyc deleted file mode 100644 index b617d77..0000000 Binary files a/leenkx/blender/lnx/logicnode/math/__pycache__/LN_distance_screen_to_world_space.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/math/__pycache__/LN_float_delta_interpolate.cpython-311.pyc b/leenkx/blender/lnx/logicnode/math/__pycache__/LN_float_delta_interpolate.cpython-311.pyc deleted file mode 100644 index 5c87e26..0000000 Binary files a/leenkx/blender/lnx/logicnode/math/__pycache__/LN_float_delta_interpolate.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/math/__pycache__/LN_key_interpolate.cpython-311.pyc b/leenkx/blender/lnx/logicnode/math/__pycache__/LN_key_interpolate.cpython-311.pyc deleted file mode 100644 index e2a902e..0000000 Binary files a/leenkx/blender/lnx/logicnode/math/__pycache__/LN_key_interpolate.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/math/__pycache__/LN_map_range.cpython-311.pyc b/leenkx/blender/lnx/logicnode/math/__pycache__/LN_map_range.cpython-311.pyc deleted file mode 100644 index 108863f..0000000 Binary files a/leenkx/blender/lnx/logicnode/math/__pycache__/LN_map_range.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/math/__pycache__/LN_math.cpython-311.pyc b/leenkx/blender/lnx/logicnode/math/__pycache__/LN_math.cpython-311.pyc deleted file mode 100644 index 9846346..0000000 Binary files a/leenkx/blender/lnx/logicnode/math/__pycache__/LN_math.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/math/__pycache__/LN_math_expression.cpython-311.pyc b/leenkx/blender/lnx/logicnode/math/__pycache__/LN_math_expression.cpython-311.pyc deleted file mode 100644 index 3a18fa8..0000000 Binary files a/leenkx/blender/lnx/logicnode/math/__pycache__/LN_math_expression.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/math/__pycache__/LN_math_term.cpython-311.pyc b/leenkx/blender/lnx/logicnode/math/__pycache__/LN_math_term.cpython-311.pyc deleted file mode 100644 index ca62444..0000000 Binary files a/leenkx/blender/lnx/logicnode/math/__pycache__/LN_math_term.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/math/__pycache__/LN_matrix_math.cpython-311.pyc b/leenkx/blender/lnx/logicnode/math/__pycache__/LN_matrix_math.cpython-311.pyc deleted file mode 100644 index a79c3d5..0000000 Binary files a/leenkx/blender/lnx/logicnode/math/__pycache__/LN_matrix_math.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/math/__pycache__/LN_mix.cpython-311.pyc b/leenkx/blender/lnx/logicnode/math/__pycache__/LN_mix.cpython-311.pyc deleted file mode 100644 index bedfc2e..0000000 Binary files a/leenkx/blender/lnx/logicnode/math/__pycache__/LN_mix.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/math/__pycache__/LN_mix_vector.cpython-311.pyc b/leenkx/blender/lnx/logicnode/math/__pycache__/LN_mix_vector.cpython-311.pyc deleted file mode 100644 index ea2709c..0000000 Binary files a/leenkx/blender/lnx/logicnode/math/__pycache__/LN_mix_vector.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/math/__pycache__/LN_quaternion_math.cpython-311.pyc b/leenkx/blender/lnx/logicnode/math/__pycache__/LN_quaternion_math.cpython-311.pyc deleted file mode 100644 index 232831a..0000000 Binary files a/leenkx/blender/lnx/logicnode/math/__pycache__/LN_quaternion_math.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/math/__pycache__/LN_rad_to_deg.cpython-311.pyc b/leenkx/blender/lnx/logicnode/math/__pycache__/LN_rad_to_deg.cpython-311.pyc deleted file mode 100644 index 22ba9fd..0000000 Binary files a/leenkx/blender/lnx/logicnode/math/__pycache__/LN_rad_to_deg.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/math/__pycache__/LN_rotation_math.cpython-311.pyc b/leenkx/blender/lnx/logicnode/math/__pycache__/LN_rotation_math.cpython-311.pyc deleted file mode 100644 index 833b843..0000000 Binary files a/leenkx/blender/lnx/logicnode/math/__pycache__/LN_rotation_math.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/math/__pycache__/LN_screen_to_world_space.cpython-311.pyc b/leenkx/blender/lnx/logicnode/math/__pycache__/LN_screen_to_world_space.cpython-311.pyc deleted file mode 100644 index 038fd3b..0000000 Binary files a/leenkx/blender/lnx/logicnode/math/__pycache__/LN_screen_to_world_space.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/math/__pycache__/LN_separate_hsv.cpython-311.pyc b/leenkx/blender/lnx/logicnode/math/__pycache__/LN_separate_hsv.cpython-311.pyc deleted file mode 100644 index 0007dcc..0000000 Binary files a/leenkx/blender/lnx/logicnode/math/__pycache__/LN_separate_hsv.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/math/__pycache__/LN_separate_rgb.cpython-311.pyc b/leenkx/blender/lnx/logicnode/math/__pycache__/LN_separate_rgb.cpython-311.pyc deleted file mode 100644 index 7fb8e54..0000000 Binary files a/leenkx/blender/lnx/logicnode/math/__pycache__/LN_separate_rgb.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/math/__pycache__/LN_separate_xyz.cpython-311.pyc b/leenkx/blender/lnx/logicnode/math/__pycache__/LN_separate_xyz.cpython-311.pyc deleted file mode 100644 index 6fc5b39..0000000 Binary files a/leenkx/blender/lnx/logicnode/math/__pycache__/LN_separate_xyz.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/math/__pycache__/LN_tween_float.cpython-311.pyc b/leenkx/blender/lnx/logicnode/math/__pycache__/LN_tween_float.cpython-311.pyc deleted file mode 100644 index b7b51c1..0000000 Binary files a/leenkx/blender/lnx/logicnode/math/__pycache__/LN_tween_float.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/math/__pycache__/LN_tween_rotation.cpython-311.pyc b/leenkx/blender/lnx/logicnode/math/__pycache__/LN_tween_rotation.cpython-311.pyc deleted file mode 100644 index daca1ca..0000000 Binary files a/leenkx/blender/lnx/logicnode/math/__pycache__/LN_tween_rotation.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/math/__pycache__/LN_tween_transform.cpython-311.pyc b/leenkx/blender/lnx/logicnode/math/__pycache__/LN_tween_transform.cpython-311.pyc deleted file mode 100644 index a624700..0000000 Binary files a/leenkx/blender/lnx/logicnode/math/__pycache__/LN_tween_transform.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/math/__pycache__/LN_tween_vector.cpython-311.pyc b/leenkx/blender/lnx/logicnode/math/__pycache__/LN_tween_vector.cpython-311.pyc deleted file mode 100644 index 24cec5c..0000000 Binary files a/leenkx/blender/lnx/logicnode/math/__pycache__/LN_tween_vector.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/math/__pycache__/LN_vector_clamp.cpython-311.pyc b/leenkx/blender/lnx/logicnode/math/__pycache__/LN_vector_clamp.cpython-311.pyc deleted file mode 100644 index 8ab3870..0000000 Binary files a/leenkx/blender/lnx/logicnode/math/__pycache__/LN_vector_clamp.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/math/__pycache__/LN_vector_math.cpython-311.pyc b/leenkx/blender/lnx/logicnode/math/__pycache__/LN_vector_math.cpython-311.pyc deleted file mode 100644 index 1fde6ce..0000000 Binary files a/leenkx/blender/lnx/logicnode/math/__pycache__/LN_vector_math.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/math/__pycache__/LN_vector_move_towards.cpython-311.pyc b/leenkx/blender/lnx/logicnode/math/__pycache__/LN_vector_move_towards.cpython-311.pyc deleted file mode 100644 index c33952e..0000000 Binary files a/leenkx/blender/lnx/logicnode/math/__pycache__/LN_vector_move_towards.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/math/__pycache__/LN_world_to_screen_space.cpython-311.pyc b/leenkx/blender/lnx/logicnode/math/__pycache__/LN_world_to_screen_space.cpython-311.pyc deleted file mode 100644 index a20cbeb..0000000 Binary files a/leenkx/blender/lnx/logicnode/math/__pycache__/LN_world_to_screen_space.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/math/__pycache__/__init__.cpython-311.pyc b/leenkx/blender/lnx/logicnode/math/__pycache__/__init__.cpython-311.pyc deleted file mode 100644 index c558aca..0000000 Binary files a/leenkx/blender/lnx/logicnode/math/__pycache__/__init__.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/miscellaneous/__pycache__/LN_boolean_to_int.cpython-311.pyc b/leenkx/blender/lnx/logicnode/miscellaneous/__pycache__/LN_boolean_to_int.cpython-311.pyc deleted file mode 100644 index 8905de8..0000000 Binary files a/leenkx/blender/lnx/logicnode/miscellaneous/__pycache__/LN_boolean_to_int.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/miscellaneous/__pycache__/LN_boolean_to_vector.cpython-311.pyc b/leenkx/blender/lnx/logicnode/miscellaneous/__pycache__/LN_boolean_to_vector.cpython-311.pyc deleted file mode 100644 index 69f5bc3..0000000 Binary files a/leenkx/blender/lnx/logicnode/miscellaneous/__pycache__/LN_boolean_to_vector.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/miscellaneous/__pycache__/LN_call_group.cpython-311.pyc b/leenkx/blender/lnx/logicnode/miscellaneous/__pycache__/LN_call_group.cpython-311.pyc deleted file mode 100644 index 2c2ab9f..0000000 Binary files a/leenkx/blender/lnx/logicnode/miscellaneous/__pycache__/LN_call_group.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/miscellaneous/__pycache__/LN_default_if_null.cpython-311.pyc b/leenkx/blender/lnx/logicnode/miscellaneous/__pycache__/LN_default_if_null.cpython-311.pyc deleted file mode 100644 index 6a71fd5..0000000 Binary files a/leenkx/blender/lnx/logicnode/miscellaneous/__pycache__/LN_default_if_null.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/miscellaneous/__pycache__/LN_get_application_time.cpython-311.pyc b/leenkx/blender/lnx/logicnode/miscellaneous/__pycache__/LN_get_application_time.cpython-311.pyc deleted file mode 100644 index 8291157..0000000 Binary files a/leenkx/blender/lnx/logicnode/miscellaneous/__pycache__/LN_get_application_time.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/miscellaneous/__pycache__/LN_get_debug_console_settings.cpython-311.pyc b/leenkx/blender/lnx/logicnode/miscellaneous/__pycache__/LN_get_debug_console_settings.cpython-311.pyc deleted file mode 100644 index fe9f085..0000000 Binary files a/leenkx/blender/lnx/logicnode/miscellaneous/__pycache__/LN_get_debug_console_settings.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/miscellaneous/__pycache__/LN_get_display_resolution.cpython-311.pyc b/leenkx/blender/lnx/logicnode/miscellaneous/__pycache__/LN_get_display_resolution.cpython-311.pyc deleted file mode 100644 index 10c3e74..0000000 Binary files a/leenkx/blender/lnx/logicnode/miscellaneous/__pycache__/LN_get_display_resolution.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/miscellaneous/__pycache__/LN_get_fps.cpython-311.pyc b/leenkx/blender/lnx/logicnode/miscellaneous/__pycache__/LN_get_fps.cpython-311.pyc deleted file mode 100644 index d640ce9..0000000 Binary files a/leenkx/blender/lnx/logicnode/miscellaneous/__pycache__/LN_get_fps.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/miscellaneous/__pycache__/LN_get_window_resolution.cpython-311.pyc b/leenkx/blender/lnx/logicnode/miscellaneous/__pycache__/LN_get_window_resolution.cpython-311.pyc deleted file mode 100644 index 6f8e695..0000000 Binary files a/leenkx/blender/lnx/logicnode/miscellaneous/__pycache__/LN_get_window_resolution.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/miscellaneous/__pycache__/LN_group_input.cpython-311.pyc b/leenkx/blender/lnx/logicnode/miscellaneous/__pycache__/LN_group_input.cpython-311.pyc deleted file mode 100644 index 453251a..0000000 Binary files a/leenkx/blender/lnx/logicnode/miscellaneous/__pycache__/LN_group_input.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/miscellaneous/__pycache__/LN_group_output.cpython-311.pyc b/leenkx/blender/lnx/logicnode/miscellaneous/__pycache__/LN_group_output.cpython-311.pyc deleted file mode 100644 index 9ea9920..0000000 Binary files a/leenkx/blender/lnx/logicnode/miscellaneous/__pycache__/LN_group_output.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/miscellaneous/__pycache__/LN_regular_expression.cpython-311.pyc b/leenkx/blender/lnx/logicnode/miscellaneous/__pycache__/LN_regular_expression.cpython-311.pyc deleted file mode 100644 index 20dfdc8..0000000 Binary files a/leenkx/blender/lnx/logicnode/miscellaneous/__pycache__/LN_regular_expression.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/miscellaneous/__pycache__/LN_set_debug_console_settings.cpython-311.pyc b/leenkx/blender/lnx/logicnode/miscellaneous/__pycache__/LN_set_debug_console_settings.cpython-311.pyc deleted file mode 100644 index 37d8a5b..0000000 Binary files a/leenkx/blender/lnx/logicnode/miscellaneous/__pycache__/LN_set_debug_console_settings.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/miscellaneous/__pycache__/LN_set_time_scale.cpython-311.pyc b/leenkx/blender/lnx/logicnode/miscellaneous/__pycache__/LN_set_time_scale.cpython-311.pyc deleted file mode 100644 index 551f3b5..0000000 Binary files a/leenkx/blender/lnx/logicnode/miscellaneous/__pycache__/LN_set_time_scale.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/miscellaneous/__pycache__/LN_sleep.cpython-311.pyc b/leenkx/blender/lnx/logicnode/miscellaneous/__pycache__/LN_sleep.cpython-311.pyc deleted file mode 100644 index 374a94f..0000000 Binary files a/leenkx/blender/lnx/logicnode/miscellaneous/__pycache__/LN_sleep.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/miscellaneous/__pycache__/LN_timer.cpython-311.pyc b/leenkx/blender/lnx/logicnode/miscellaneous/__pycache__/LN_timer.cpython-311.pyc deleted file mode 100644 index 41bb46b..0000000 Binary files a/leenkx/blender/lnx/logicnode/miscellaneous/__pycache__/LN_timer.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/miscellaneous/__pycache__/__init__.cpython-311.pyc b/leenkx/blender/lnx/logicnode/miscellaneous/__pycache__/__init__.cpython-311.pyc deleted file mode 100644 index 7b8127d..0000000 Binary files a/leenkx/blender/lnx/logicnode/miscellaneous/__pycache__/__init__.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/native/__pycache__/LN_call_haxe_static.cpython-311.pyc b/leenkx/blender/lnx/logicnode/native/__pycache__/LN_call_haxe_static.cpython-311.pyc deleted file mode 100644 index 4bfc780..0000000 Binary files a/leenkx/blender/lnx/logicnode/native/__pycache__/LN_call_haxe_static.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/native/__pycache__/LN_clear_console.cpython-311.pyc b/leenkx/blender/lnx/logicnode/native/__pycache__/LN_clear_console.cpython-311.pyc deleted file mode 100644 index 8783284..0000000 Binary files a/leenkx/blender/lnx/logicnode/native/__pycache__/LN_clear_console.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/native/__pycache__/LN_expression.cpython-311.pyc b/leenkx/blender/lnx/logicnode/native/__pycache__/LN_expression.cpython-311.pyc deleted file mode 100644 index e9c1f08..0000000 Binary files a/leenkx/blender/lnx/logicnode/native/__pycache__/LN_expression.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/native/__pycache__/LN_get_date_time.cpython-311.pyc b/leenkx/blender/lnx/logicnode/native/__pycache__/LN_get_date_time.cpython-311.pyc deleted file mode 100644 index 80a988d..0000000 Binary files a/leenkx/blender/lnx/logicnode/native/__pycache__/LN_get_date_time.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/native/__pycache__/LN_get_haxe_property.cpython-311.pyc b/leenkx/blender/lnx/logicnode/native/__pycache__/LN_get_haxe_property.cpython-311.pyc deleted file mode 100644 index 8263a28..0000000 Binary files a/leenkx/blender/lnx/logicnode/native/__pycache__/LN_get_haxe_property.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/native/__pycache__/LN_get_system_language.cpython-311.pyc b/leenkx/blender/lnx/logicnode/native/__pycache__/LN_get_system_language.cpython-311.pyc deleted file mode 100644 index 92bfc3d..0000000 Binary files a/leenkx/blender/lnx/logicnode/native/__pycache__/LN_get_system_language.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/native/__pycache__/LN_get_system_name.cpython-311.pyc b/leenkx/blender/lnx/logicnode/native/__pycache__/LN_get_system_name.cpython-311.pyc deleted file mode 100644 index 687d098..0000000 Binary files a/leenkx/blender/lnx/logicnode/native/__pycache__/LN_get_system_name.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/native/__pycache__/LN_print.cpython-311.pyc b/leenkx/blender/lnx/logicnode/native/__pycache__/LN_print.cpython-311.pyc deleted file mode 100644 index 1c4a57d..0000000 Binary files a/leenkx/blender/lnx/logicnode/native/__pycache__/LN_print.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/native/__pycache__/LN_read_file.cpython-311.pyc b/leenkx/blender/lnx/logicnode/native/__pycache__/LN_read_file.cpython-311.pyc deleted file mode 100644 index bb9641e..0000000 Binary files a/leenkx/blender/lnx/logicnode/native/__pycache__/LN_read_file.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/native/__pycache__/LN_read_json.cpython-311.pyc b/leenkx/blender/lnx/logicnode/native/__pycache__/LN_read_json.cpython-311.pyc deleted file mode 100644 index 958d08d..0000000 Binary files a/leenkx/blender/lnx/logicnode/native/__pycache__/LN_read_json.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/native/__pycache__/LN_read_storage.cpython-311.pyc b/leenkx/blender/lnx/logicnode/native/__pycache__/LN_read_storage.cpython-311.pyc deleted file mode 100644 index 84c1c19..0000000 Binary files a/leenkx/blender/lnx/logicnode/native/__pycache__/LN_read_storage.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/native/__pycache__/LN_script.cpython-311.pyc b/leenkx/blender/lnx/logicnode/native/__pycache__/LN_script.cpython-311.pyc deleted file mode 100644 index 7b282ce..0000000 Binary files a/leenkx/blender/lnx/logicnode/native/__pycache__/LN_script.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/native/__pycache__/LN_set_haxe_property.cpython-311.pyc b/leenkx/blender/lnx/logicnode/native/__pycache__/LN_set_haxe_property.cpython-311.pyc deleted file mode 100644 index 075a855..0000000 Binary files a/leenkx/blender/lnx/logicnode/native/__pycache__/LN_set_haxe_property.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/native/__pycache__/LN_set_vibrate.cpython-311.pyc b/leenkx/blender/lnx/logicnode/native/__pycache__/LN_set_vibrate.cpython-311.pyc deleted file mode 100644 index 9709995..0000000 Binary files a/leenkx/blender/lnx/logicnode/native/__pycache__/LN_set_vibrate.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/native/__pycache__/LN_shutdown.cpython-311.pyc b/leenkx/blender/lnx/logicnode/native/__pycache__/LN_shutdown.cpython-311.pyc deleted file mode 100644 index 0a29bab..0000000 Binary files a/leenkx/blender/lnx/logicnode/native/__pycache__/LN_shutdown.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/native/__pycache__/LN_write_file.cpython-311.pyc b/leenkx/blender/lnx/logicnode/native/__pycache__/LN_write_file.cpython-311.pyc deleted file mode 100644 index 0e335c8..0000000 Binary files a/leenkx/blender/lnx/logicnode/native/__pycache__/LN_write_file.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/native/__pycache__/LN_write_image.cpython-311.pyc b/leenkx/blender/lnx/logicnode/native/__pycache__/LN_write_image.cpython-311.pyc deleted file mode 100644 index da823fb..0000000 Binary files a/leenkx/blender/lnx/logicnode/native/__pycache__/LN_write_image.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/native/__pycache__/LN_write_json.cpython-311.pyc b/leenkx/blender/lnx/logicnode/native/__pycache__/LN_write_json.cpython-311.pyc deleted file mode 100644 index c4d4453..0000000 Binary files a/leenkx/blender/lnx/logicnode/native/__pycache__/LN_write_json.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/native/__pycache__/LN_write_storage.cpython-311.pyc b/leenkx/blender/lnx/logicnode/native/__pycache__/LN_write_storage.cpython-311.pyc deleted file mode 100644 index c2fe638..0000000 Binary files a/leenkx/blender/lnx/logicnode/native/__pycache__/LN_write_storage.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/native/__pycache__/__init__.cpython-311.pyc b/leenkx/blender/lnx/logicnode/native/__pycache__/__init__.cpython-311.pyc deleted file mode 100644 index b1b0afd..0000000 Binary files a/leenkx/blender/lnx/logicnode/native/__pycache__/__init__.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/navmesh/__pycache__/LN_crowd_go_to_location.cpython-311.pyc b/leenkx/blender/lnx/logicnode/navmesh/__pycache__/LN_crowd_go_to_location.cpython-311.pyc deleted file mode 100644 index e13eaf7..0000000 Binary files a/leenkx/blender/lnx/logicnode/navmesh/__pycache__/LN_crowd_go_to_location.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/navmesh/__pycache__/LN_get_agent_data.cpython-311.pyc b/leenkx/blender/lnx/logicnode/navmesh/__pycache__/LN_get_agent_data.cpython-311.pyc deleted file mode 100644 index a6f7f0c..0000000 Binary files a/leenkx/blender/lnx/logicnode/navmesh/__pycache__/LN_get_agent_data.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/navmesh/__pycache__/LN_go_to_location.cpython-311.pyc b/leenkx/blender/lnx/logicnode/navmesh/__pycache__/LN_go_to_location.cpython-311.pyc deleted file mode 100644 index fa4b921..0000000 Binary files a/leenkx/blender/lnx/logicnode/navmesh/__pycache__/LN_go_to_location.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/navmesh/__pycache__/LN_navigable_location.cpython-311.pyc b/leenkx/blender/lnx/logicnode/navmesh/__pycache__/LN_navigable_location.cpython-311.pyc deleted file mode 100644 index 21100d2..0000000 Binary files a/leenkx/blender/lnx/logicnode/navmesh/__pycache__/LN_navigable_location.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/navmesh/__pycache__/LN_pick_navmesh_location.cpython-311.pyc b/leenkx/blender/lnx/logicnode/navmesh/__pycache__/LN_pick_navmesh_location.cpython-311.pyc deleted file mode 100644 index dc6445f..0000000 Binary files a/leenkx/blender/lnx/logicnode/navmesh/__pycache__/LN_pick_navmesh_location.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/navmesh/__pycache__/LN_stop_agent.cpython-311.pyc b/leenkx/blender/lnx/logicnode/navmesh/__pycache__/LN_stop_agent.cpython-311.pyc deleted file mode 100644 index b6bb44b..0000000 Binary files a/leenkx/blender/lnx/logicnode/navmesh/__pycache__/LN_stop_agent.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/navmesh/__pycache__/__init__.cpython-311.pyc b/leenkx/blender/lnx/logicnode/navmesh/__pycache__/__init__.cpython-311.pyc deleted file mode 100644 index ad41fac..0000000 Binary files a/leenkx/blender/lnx/logicnode/navmesh/__pycache__/__init__.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/network/__pycache__/LN_network_client.cpython-311.pyc b/leenkx/blender/lnx/logicnode/network/__pycache__/LN_network_client.cpython-311.pyc deleted file mode 100644 index 0fd83ce..0000000 Binary files a/leenkx/blender/lnx/logicnode/network/__pycache__/LN_network_client.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/network/__pycache__/LN_network_close_connection.cpython-311.pyc b/leenkx/blender/lnx/logicnode/network/__pycache__/LN_network_close_connection.cpython-311.pyc deleted file mode 100644 index a8bac1a..0000000 Binary files a/leenkx/blender/lnx/logicnode/network/__pycache__/LN_network_close_connection.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/network/__pycache__/LN_network_event.cpython-311.pyc b/leenkx/blender/lnx/logicnode/network/__pycache__/LN_network_event.cpython-311.pyc deleted file mode 100644 index 6e61580..0000000 Binary files a/leenkx/blender/lnx/logicnode/network/__pycache__/LN_network_event.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/network/__pycache__/LN_network_host.cpython-311.pyc b/leenkx/blender/lnx/logicnode/network/__pycache__/LN_network_host.cpython-311.pyc deleted file mode 100644 index 1ce9d97..0000000 Binary files a/leenkx/blender/lnx/logicnode/network/__pycache__/LN_network_host.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/network/__pycache__/LN_network_host_close_client.cpython-311.pyc b/leenkx/blender/lnx/logicnode/network/__pycache__/LN_network_host_close_client.cpython-311.pyc deleted file mode 100644 index 1e53505..0000000 Binary files a/leenkx/blender/lnx/logicnode/network/__pycache__/LN_network_host_close_client.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/network/__pycache__/LN_network_host_get_ip.cpython-311.pyc b/leenkx/blender/lnx/logicnode/network/__pycache__/LN_network_host_get_ip.cpython-311.pyc deleted file mode 100644 index 2790f4b..0000000 Binary files a/leenkx/blender/lnx/logicnode/network/__pycache__/LN_network_host_get_ip.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/network/__pycache__/LN_network_http_request.cpython-311.pyc b/leenkx/blender/lnx/logicnode/network/__pycache__/LN_network_http_request.cpython-311.pyc deleted file mode 100644 index c592085..0000000 Binary files a/leenkx/blender/lnx/logicnode/network/__pycache__/LN_network_http_request.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/network/__pycache__/LN_network_message_parser.cpython-311.pyc b/leenkx/blender/lnx/logicnode/network/__pycache__/LN_network_message_parser.cpython-311.pyc deleted file mode 100644 index 28cb629..0000000 Binary files a/leenkx/blender/lnx/logicnode/network/__pycache__/LN_network_message_parser.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/network/__pycache__/LN_network_open.cpython-311.pyc b/leenkx/blender/lnx/logicnode/network/__pycache__/LN_network_open.cpython-311.pyc deleted file mode 100644 index 9816622..0000000 Binary files a/leenkx/blender/lnx/logicnode/network/__pycache__/LN_network_open.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/network/__pycache__/LN_network_send_message.cpython-311.pyc b/leenkx/blender/lnx/logicnode/network/__pycache__/LN_network_send_message.cpython-311.pyc deleted file mode 100644 index 79224ce..0000000 Binary files a/leenkx/blender/lnx/logicnode/network/__pycache__/LN_network_send_message.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/network/__pycache__/__init__.cpython-311.pyc b/leenkx/blender/lnx/logicnode/network/__pycache__/__init__.cpython-311.pyc deleted file mode 100644 index 935e68b..0000000 Binary files a/leenkx/blender/lnx/logicnode/network/__pycache__/__init__.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/object/__pycache__/LN_get_distance.cpython-311.pyc b/leenkx/blender/lnx/logicnode/object/__pycache__/LN_get_distance.cpython-311.pyc deleted file mode 100644 index f72c88c..0000000 Binary files a/leenkx/blender/lnx/logicnode/object/__pycache__/LN_get_distance.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/object/__pycache__/LN_get_object_by_name.cpython-311.pyc b/leenkx/blender/lnx/logicnode/object/__pycache__/LN_get_object_by_name.cpython-311.pyc deleted file mode 100644 index 69d11da..0000000 Binary files a/leenkx/blender/lnx/logicnode/object/__pycache__/LN_get_object_by_name.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/object/__pycache__/LN_get_object_by_uid.cpython-311.pyc b/leenkx/blender/lnx/logicnode/object/__pycache__/LN_get_object_by_uid.cpython-311.pyc deleted file mode 100644 index 429a5f9..0000000 Binary files a/leenkx/blender/lnx/logicnode/object/__pycache__/LN_get_object_by_uid.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/object/__pycache__/LN_get_object_child.cpython-311.pyc b/leenkx/blender/lnx/logicnode/object/__pycache__/LN_get_object_child.cpython-311.pyc deleted file mode 100644 index 4534aff..0000000 Binary files a/leenkx/blender/lnx/logicnode/object/__pycache__/LN_get_object_child.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/object/__pycache__/LN_get_object_children.cpython-311.pyc b/leenkx/blender/lnx/logicnode/object/__pycache__/LN_get_object_children.cpython-311.pyc deleted file mode 100644 index 42c552e..0000000 Binary files a/leenkx/blender/lnx/logicnode/object/__pycache__/LN_get_object_children.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/object/__pycache__/LN_get_object_geom.cpython-311.pyc b/leenkx/blender/lnx/logicnode/object/__pycache__/LN_get_object_geom.cpython-311.pyc deleted file mode 100644 index 2b4394d..0000000 Binary files a/leenkx/blender/lnx/logicnode/object/__pycache__/LN_get_object_geom.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/object/__pycache__/LN_get_object_mesh.cpython-311.pyc b/leenkx/blender/lnx/logicnode/object/__pycache__/LN_get_object_mesh.cpython-311.pyc deleted file mode 100644 index 6ce611a..0000000 Binary files a/leenkx/blender/lnx/logicnode/object/__pycache__/LN_get_object_mesh.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/object/__pycache__/LN_get_object_name.cpython-311.pyc b/leenkx/blender/lnx/logicnode/object/__pycache__/LN_get_object_name.cpython-311.pyc deleted file mode 100644 index b7a7e47..0000000 Binary files a/leenkx/blender/lnx/logicnode/object/__pycache__/LN_get_object_name.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/object/__pycache__/LN_get_object_offscreen.cpython-311.pyc b/leenkx/blender/lnx/logicnode/object/__pycache__/LN_get_object_offscreen.cpython-311.pyc deleted file mode 100644 index bb5ce78..0000000 Binary files a/leenkx/blender/lnx/logicnode/object/__pycache__/LN_get_object_offscreen.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/object/__pycache__/LN_get_object_parent.cpython-311.pyc b/leenkx/blender/lnx/logicnode/object/__pycache__/LN_get_object_parent.cpython-311.pyc deleted file mode 100644 index ab8128f..0000000 Binary files a/leenkx/blender/lnx/logicnode/object/__pycache__/LN_get_object_parent.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/object/__pycache__/LN_get_object_property.cpython-311.pyc b/leenkx/blender/lnx/logicnode/object/__pycache__/LN_get_object_property.cpython-311.pyc deleted file mode 100644 index a0c08d4..0000000 Binary files a/leenkx/blender/lnx/logicnode/object/__pycache__/LN_get_object_property.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/object/__pycache__/LN_get_object_uid.cpython-311.pyc b/leenkx/blender/lnx/logicnode/object/__pycache__/LN_get_object_uid.cpython-311.pyc deleted file mode 100644 index 7729bf2..0000000 Binary files a/leenkx/blender/lnx/logicnode/object/__pycache__/LN_get_object_uid.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/object/__pycache__/LN_get_object_visible.cpython-311.pyc b/leenkx/blender/lnx/logicnode/object/__pycache__/LN_get_object_visible.cpython-311.pyc deleted file mode 100644 index 2ac4c12..0000000 Binary files a/leenkx/blender/lnx/logicnode/object/__pycache__/LN_get_object_visible.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/object/__pycache__/LN_mesh.cpython-311.pyc b/leenkx/blender/lnx/logicnode/object/__pycache__/LN_mesh.cpython-311.pyc deleted file mode 100644 index e818b11..0000000 Binary files a/leenkx/blender/lnx/logicnode/object/__pycache__/LN_mesh.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/object/__pycache__/LN_object.cpython-311.pyc b/leenkx/blender/lnx/logicnode/object/__pycache__/LN_object.cpython-311.pyc deleted file mode 100644 index 41e3f0d..0000000 Binary files a/leenkx/blender/lnx/logicnode/object/__pycache__/LN_object.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/object/__pycache__/LN_raycast_closest_object.cpython-311.pyc b/leenkx/blender/lnx/logicnode/object/__pycache__/LN_raycast_closest_object.cpython-311.pyc deleted file mode 100644 index 49556de..0000000 Binary files a/leenkx/blender/lnx/logicnode/object/__pycache__/LN_raycast_closest_object.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/object/__pycache__/LN_raycast_object.cpython-311.pyc b/leenkx/blender/lnx/logicnode/object/__pycache__/LN_raycast_object.cpython-311.pyc deleted file mode 100644 index 533340d..0000000 Binary files a/leenkx/blender/lnx/logicnode/object/__pycache__/LN_raycast_object.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/object/__pycache__/LN_raycast_ray.cpython-311.pyc b/leenkx/blender/lnx/logicnode/object/__pycache__/LN_raycast_ray.cpython-311.pyc deleted file mode 100644 index aba0b0b..0000000 Binary files a/leenkx/blender/lnx/logicnode/object/__pycache__/LN_raycast_ray.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/object/__pycache__/LN_remove_object.cpython-311.pyc b/leenkx/blender/lnx/logicnode/object/__pycache__/LN_remove_object.cpython-311.pyc deleted file mode 100644 index ec1990a..0000000 Binary files a/leenkx/blender/lnx/logicnode/object/__pycache__/LN_remove_object.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/object/__pycache__/LN_remove_object_parent.cpython-311.pyc b/leenkx/blender/lnx/logicnode/object/__pycache__/LN_remove_object_parent.cpython-311.pyc deleted file mode 100644 index 641cd4a..0000000 Binary files a/leenkx/blender/lnx/logicnode/object/__pycache__/LN_remove_object_parent.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/object/__pycache__/LN_self_object.cpython-311.pyc b/leenkx/blender/lnx/logicnode/object/__pycache__/LN_self_object.cpython-311.pyc deleted file mode 100644 index f1d190c..0000000 Binary files a/leenkx/blender/lnx/logicnode/object/__pycache__/LN_self_object.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/object/__pycache__/LN_set_object_mesh.cpython-311.pyc b/leenkx/blender/lnx/logicnode/object/__pycache__/LN_set_object_mesh.cpython-311.pyc deleted file mode 100644 index b27848e..0000000 Binary files a/leenkx/blender/lnx/logicnode/object/__pycache__/LN_set_object_mesh.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/object/__pycache__/LN_set_object_name.cpython-311.pyc b/leenkx/blender/lnx/logicnode/object/__pycache__/LN_set_object_name.cpython-311.pyc deleted file mode 100644 index 8f0881b..0000000 Binary files a/leenkx/blender/lnx/logicnode/object/__pycache__/LN_set_object_name.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/object/__pycache__/LN_set_object_parent.cpython-311.pyc b/leenkx/blender/lnx/logicnode/object/__pycache__/LN_set_object_parent.cpython-311.pyc deleted file mode 100644 index 09b8230..0000000 Binary files a/leenkx/blender/lnx/logicnode/object/__pycache__/LN_set_object_parent.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/object/__pycache__/LN_set_object_property.cpython-311.pyc b/leenkx/blender/lnx/logicnode/object/__pycache__/LN_set_object_property.cpython-311.pyc deleted file mode 100644 index c963e23..0000000 Binary files a/leenkx/blender/lnx/logicnode/object/__pycache__/LN_set_object_property.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/object/__pycache__/LN_set_object_shape_key.cpython-311.pyc b/leenkx/blender/lnx/logicnode/object/__pycache__/LN_set_object_shape_key.cpython-311.pyc deleted file mode 100644 index 0604a03..0000000 Binary files a/leenkx/blender/lnx/logicnode/object/__pycache__/LN_set_object_shape_key.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/object/__pycache__/LN_set_object_visible.cpython-311.pyc b/leenkx/blender/lnx/logicnode/object/__pycache__/LN_set_object_visible.cpython-311.pyc deleted file mode 100644 index a3a1795..0000000 Binary files a/leenkx/blender/lnx/logicnode/object/__pycache__/LN_set_object_visible.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/object/__pycache__/LN_spawn_object.cpython-311.pyc b/leenkx/blender/lnx/logicnode/object/__pycache__/LN_spawn_object.cpython-311.pyc deleted file mode 100644 index 9ffad28..0000000 Binary files a/leenkx/blender/lnx/logicnode/object/__pycache__/LN_spawn_object.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/object/__pycache__/LN_spawn_object_by_name.cpython-311.pyc b/leenkx/blender/lnx/logicnode/object/__pycache__/LN_spawn_object_by_name.cpython-311.pyc deleted file mode 100644 index e8081fd..0000000 Binary files a/leenkx/blender/lnx/logicnode/object/__pycache__/LN_spawn_object_by_name.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/object/__pycache__/__init__.cpython-311.pyc b/leenkx/blender/lnx/logicnode/object/__pycache__/__init__.cpython-311.pyc deleted file mode 100644 index a0e0cb7..0000000 Binary files a/leenkx/blender/lnx/logicnode/object/__pycache__/__init__.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/particle/__pycache__/LN_add_particle_to_object.cpython-311.pyc b/leenkx/blender/lnx/logicnode/particle/__pycache__/LN_add_particle_to_object.cpython-311.pyc deleted file mode 100644 index 44b87f9..0000000 Binary files a/leenkx/blender/lnx/logicnode/particle/__pycache__/LN_add_particle_to_object.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/particle/__pycache__/LN_get_particle.cpython-311.pyc b/leenkx/blender/lnx/logicnode/particle/__pycache__/LN_get_particle.cpython-311.pyc deleted file mode 100644 index 7bc419b..0000000 Binary files a/leenkx/blender/lnx/logicnode/particle/__pycache__/LN_get_particle.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/particle/__pycache__/LN_get_particle_data.cpython-311.pyc b/leenkx/blender/lnx/logicnode/particle/__pycache__/LN_get_particle_data.cpython-311.pyc deleted file mode 100644 index 678c7d2..0000000 Binary files a/leenkx/blender/lnx/logicnode/particle/__pycache__/LN_get_particle_data.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/particle/__pycache__/LN_remove_particle_from_object.cpython-311.pyc b/leenkx/blender/lnx/logicnode/particle/__pycache__/LN_remove_particle_from_object.cpython-311.pyc deleted file mode 100644 index 159ae44..0000000 Binary files a/leenkx/blender/lnx/logicnode/particle/__pycache__/LN_remove_particle_from_object.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/particle/__pycache__/LN_set_particle_data.cpython-311.pyc b/leenkx/blender/lnx/logicnode/particle/__pycache__/LN_set_particle_data.cpython-311.pyc deleted file mode 100644 index 76b5e3c..0000000 Binary files a/leenkx/blender/lnx/logicnode/particle/__pycache__/LN_set_particle_data.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/particle/__pycache__/LN_set_particle_speed.cpython-311.pyc b/leenkx/blender/lnx/logicnode/particle/__pycache__/LN_set_particle_speed.cpython-311.pyc deleted file mode 100644 index a870618..0000000 Binary files a/leenkx/blender/lnx/logicnode/particle/__pycache__/LN_set_particle_speed.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/particle/__pycache__/__init__.cpython-311.pyc b/leenkx/blender/lnx/logicnode/particle/__pycache__/__init__.cpython-311.pyc deleted file mode 100644 index 4cfb9a3..0000000 Binary files a/leenkx/blender/lnx/logicnode/particle/__pycache__/__init__.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/physics/__pycache__/LN_Add_rigid_body.cpython-311.pyc b/leenkx/blender/lnx/logicnode/physics/__pycache__/LN_Add_rigid_body.cpython-311.pyc deleted file mode 100644 index 780f716..0000000 Binary files a/leenkx/blender/lnx/logicnode/physics/__pycache__/LN_Add_rigid_body.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/physics/__pycache__/LN_add_physics_constraint.cpython-311.pyc b/leenkx/blender/lnx/logicnode/physics/__pycache__/LN_add_physics_constraint.cpython-311.pyc deleted file mode 100644 index 8fb3d7c..0000000 Binary files a/leenkx/blender/lnx/logicnode/physics/__pycache__/LN_add_physics_constraint.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/physics/__pycache__/LN_apply_force.cpython-311.pyc b/leenkx/blender/lnx/logicnode/physics/__pycache__/LN_apply_force.cpython-311.pyc deleted file mode 100644 index c2962d3..0000000 Binary files a/leenkx/blender/lnx/logicnode/physics/__pycache__/LN_apply_force.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/physics/__pycache__/LN_apply_force_at_location.cpython-311.pyc b/leenkx/blender/lnx/logicnode/physics/__pycache__/LN_apply_force_at_location.cpython-311.pyc deleted file mode 100644 index 65ee864..0000000 Binary files a/leenkx/blender/lnx/logicnode/physics/__pycache__/LN_apply_force_at_location.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/physics/__pycache__/LN_apply_impulse.cpython-311.pyc b/leenkx/blender/lnx/logicnode/physics/__pycache__/LN_apply_impulse.cpython-311.pyc deleted file mode 100644 index 54377de..0000000 Binary files a/leenkx/blender/lnx/logicnode/physics/__pycache__/LN_apply_impulse.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/physics/__pycache__/LN_apply_impulse_at_location.cpython-311.pyc b/leenkx/blender/lnx/logicnode/physics/__pycache__/LN_apply_impulse_at_location.cpython-311.pyc deleted file mode 100644 index 932a941..0000000 Binary files a/leenkx/blender/lnx/logicnode/physics/__pycache__/LN_apply_impulse_at_location.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/physics/__pycache__/LN_apply_torque.cpython-311.pyc b/leenkx/blender/lnx/logicnode/physics/__pycache__/LN_apply_torque.cpython-311.pyc deleted file mode 100644 index 5e36e4a..0000000 Binary files a/leenkx/blender/lnx/logicnode/physics/__pycache__/LN_apply_torque.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/physics/__pycache__/LN_apply_torque_impulse.cpython-311.pyc b/leenkx/blender/lnx/logicnode/physics/__pycache__/LN_apply_torque_impulse.cpython-311.pyc deleted file mode 100644 index ca8791c..0000000 Binary files a/leenkx/blender/lnx/logicnode/physics/__pycache__/LN_apply_torque_impulse.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/physics/__pycache__/LN_convex_cast.cpython-311.pyc b/leenkx/blender/lnx/logicnode/physics/__pycache__/LN_convex_cast.cpython-311.pyc deleted file mode 100644 index 1c40ee7..0000000 Binary files a/leenkx/blender/lnx/logicnode/physics/__pycache__/LN_convex_cast.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/physics/__pycache__/LN_convex_cast_on.cpython-311.pyc b/leenkx/blender/lnx/logicnode/physics/__pycache__/LN_convex_cast_on.cpython-311.pyc deleted file mode 100644 index 7f11f7c..0000000 Binary files a/leenkx/blender/lnx/logicnode/physics/__pycache__/LN_convex_cast_on.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/physics/__pycache__/LN_get_rb_contacts.cpython-311.pyc b/leenkx/blender/lnx/logicnode/physics/__pycache__/LN_get_rb_contacts.cpython-311.pyc deleted file mode 100644 index 925646b..0000000 Binary files a/leenkx/blender/lnx/logicnode/physics/__pycache__/LN_get_rb_contacts.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/physics/__pycache__/LN_get_rb_data.cpython-311.pyc b/leenkx/blender/lnx/logicnode/physics/__pycache__/LN_get_rb_data.cpython-311.pyc deleted file mode 100644 index 21c7df9..0000000 Binary files a/leenkx/blender/lnx/logicnode/physics/__pycache__/LN_get_rb_data.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/physics/__pycache__/LN_get_rb_first_contact.cpython-311.pyc b/leenkx/blender/lnx/logicnode/physics/__pycache__/LN_get_rb_first_contact.cpython-311.pyc deleted file mode 100644 index 18b8cac..0000000 Binary files a/leenkx/blender/lnx/logicnode/physics/__pycache__/LN_get_rb_first_contact.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/physics/__pycache__/LN_get_rb_point_velocity.cpython-311.pyc b/leenkx/blender/lnx/logicnode/physics/__pycache__/LN_get_rb_point_velocity.cpython-311.pyc deleted file mode 100644 index 65313d0..0000000 Binary files a/leenkx/blender/lnx/logicnode/physics/__pycache__/LN_get_rb_point_velocity.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/physics/__pycache__/LN_get_rb_velocity.cpython-311.pyc b/leenkx/blender/lnx/logicnode/physics/__pycache__/LN_get_rb_velocity.cpython-311.pyc deleted file mode 100644 index ce048bd..0000000 Binary files a/leenkx/blender/lnx/logicnode/physics/__pycache__/LN_get_rb_velocity.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/physics/__pycache__/LN_get_world_gravity.cpython-311.pyc b/leenkx/blender/lnx/logicnode/physics/__pycache__/LN_get_world_gravity.cpython-311.pyc deleted file mode 100644 index 440936f..0000000 Binary files a/leenkx/blender/lnx/logicnode/physics/__pycache__/LN_get_world_gravity.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/physics/__pycache__/LN_has_contact.cpython-311.pyc b/leenkx/blender/lnx/logicnode/physics/__pycache__/LN_has_contact.cpython-311.pyc deleted file mode 100644 index a0b5545..0000000 Binary files a/leenkx/blender/lnx/logicnode/physics/__pycache__/LN_has_contact.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/physics/__pycache__/LN_has_contact_array.cpython-311.pyc b/leenkx/blender/lnx/logicnode/physics/__pycache__/LN_has_contact_array.cpython-311.pyc deleted file mode 100644 index 1f91f3f..0000000 Binary files a/leenkx/blender/lnx/logicnode/physics/__pycache__/LN_has_contact_array.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/physics/__pycache__/LN_is_rb_active.cpython-311.pyc b/leenkx/blender/lnx/logicnode/physics/__pycache__/LN_is_rb_active.cpython-311.pyc deleted file mode 100644 index cdae1ea..0000000 Binary files a/leenkx/blender/lnx/logicnode/physics/__pycache__/LN_is_rb_active.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/physics/__pycache__/LN_on_contact.cpython-311.pyc b/leenkx/blender/lnx/logicnode/physics/__pycache__/LN_on_contact.cpython-311.pyc deleted file mode 100644 index 6f45b1a..0000000 Binary files a/leenkx/blender/lnx/logicnode/physics/__pycache__/LN_on_contact.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/physics/__pycache__/LN_on_contact_array.cpython-311.pyc b/leenkx/blender/lnx/logicnode/physics/__pycache__/LN_on_contact_array.cpython-311.pyc deleted file mode 100644 index 6e65cdd..0000000 Binary files a/leenkx/blender/lnx/logicnode/physics/__pycache__/LN_on_contact_array.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/physics/__pycache__/LN_on_volume_trigger.cpython-311.pyc b/leenkx/blender/lnx/logicnode/physics/__pycache__/LN_on_volume_trigger.cpython-311.pyc deleted file mode 100644 index 22f92eb..0000000 Binary files a/leenkx/blender/lnx/logicnode/physics/__pycache__/LN_on_volume_trigger.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/physics/__pycache__/LN_physics_constraint.cpython-311.pyc b/leenkx/blender/lnx/logicnode/physics/__pycache__/LN_physics_constraint.cpython-311.pyc deleted file mode 100644 index 9fe9324..0000000 Binary files a/leenkx/blender/lnx/logicnode/physics/__pycache__/LN_physics_constraint.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/physics/__pycache__/LN_pick_rb.cpython-311.pyc b/leenkx/blender/lnx/logicnode/physics/__pycache__/LN_pick_rb.cpython-311.pyc deleted file mode 100644 index 1c07a68..0000000 Binary files a/leenkx/blender/lnx/logicnode/physics/__pycache__/LN_pick_rb.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/physics/__pycache__/LN_ray_cast.cpython-311.pyc b/leenkx/blender/lnx/logicnode/physics/__pycache__/LN_ray_cast.cpython-311.pyc deleted file mode 100644 index 878c831..0000000 Binary files a/leenkx/blender/lnx/logicnode/physics/__pycache__/LN_ray_cast.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/physics/__pycache__/LN_ray_cast_on.cpython-311.pyc b/leenkx/blender/lnx/logicnode/physics/__pycache__/LN_ray_cast_on.cpython-311.pyc deleted file mode 100644 index 85e50eb..0000000 Binary files a/leenkx/blender/lnx/logicnode/physics/__pycache__/LN_ray_cast_on.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/physics/__pycache__/LN_remove_rb.cpython-311.pyc b/leenkx/blender/lnx/logicnode/physics/__pycache__/LN_remove_rb.cpython-311.pyc deleted file mode 100644 index eb6c27b..0000000 Binary files a/leenkx/blender/lnx/logicnode/physics/__pycache__/LN_remove_rb.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/physics/__pycache__/LN_set_rb_activation_state.cpython-311.pyc b/leenkx/blender/lnx/logicnode/physics/__pycache__/LN_set_rb_activation_state.cpython-311.pyc deleted file mode 100644 index 18f3d0a..0000000 Binary files a/leenkx/blender/lnx/logicnode/physics/__pycache__/LN_set_rb_activation_state.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/physics/__pycache__/LN_set_rb_friction.cpython-311.pyc b/leenkx/blender/lnx/logicnode/physics/__pycache__/LN_set_rb_friction.cpython-311.pyc deleted file mode 100644 index 6914064..0000000 Binary files a/leenkx/blender/lnx/logicnode/physics/__pycache__/LN_set_rb_friction.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/physics/__pycache__/LN_set_rb_gravity_enabled.cpython-311.pyc b/leenkx/blender/lnx/logicnode/physics/__pycache__/LN_set_rb_gravity_enabled.cpython-311.pyc deleted file mode 100644 index 702d249..0000000 Binary files a/leenkx/blender/lnx/logicnode/physics/__pycache__/LN_set_rb_gravity_enabled.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/physics/__pycache__/LN_set_rb_velocity.cpython-311.pyc b/leenkx/blender/lnx/logicnode/physics/__pycache__/LN_set_rb_velocity.cpython-311.pyc deleted file mode 100644 index 8adc505..0000000 Binary files a/leenkx/blender/lnx/logicnode/physics/__pycache__/LN_set_rb_velocity.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/physics/__pycache__/LN_set_world_gravity.cpython-311.pyc b/leenkx/blender/lnx/logicnode/physics/__pycache__/LN_set_world_gravity.cpython-311.pyc deleted file mode 100644 index 2da50ca..0000000 Binary files a/leenkx/blender/lnx/logicnode/physics/__pycache__/LN_set_world_gravity.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/physics/__pycache__/LN_volume_trigger.cpython-311.pyc b/leenkx/blender/lnx/logicnode/physics/__pycache__/LN_volume_trigger.cpython-311.pyc deleted file mode 100644 index a5a15dd..0000000 Binary files a/leenkx/blender/lnx/logicnode/physics/__pycache__/LN_volume_trigger.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/physics/__pycache__/__init__.cpython-311.pyc b/leenkx/blender/lnx/logicnode/physics/__pycache__/__init__.cpython-311.pyc deleted file mode 100644 index 01a05bf..0000000 Binary files a/leenkx/blender/lnx/logicnode/physics/__pycache__/__init__.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/postprocess/__pycache__/LN_colorgrading_get_global_node.cpython-311.pyc b/leenkx/blender/lnx/logicnode/postprocess/__pycache__/LN_colorgrading_get_global_node.cpython-311.pyc deleted file mode 100644 index d54d76d..0000000 Binary files a/leenkx/blender/lnx/logicnode/postprocess/__pycache__/LN_colorgrading_get_global_node.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/postprocess/__pycache__/LN_colorgrading_get_highlight_node.cpython-311.pyc b/leenkx/blender/lnx/logicnode/postprocess/__pycache__/LN_colorgrading_get_highlight_node.cpython-311.pyc deleted file mode 100644 index 419e931..0000000 Binary files a/leenkx/blender/lnx/logicnode/postprocess/__pycache__/LN_colorgrading_get_highlight_node.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/postprocess/__pycache__/LN_colorgrading_get_midtone_node.cpython-311.pyc b/leenkx/blender/lnx/logicnode/postprocess/__pycache__/LN_colorgrading_get_midtone_node.cpython-311.pyc deleted file mode 100644 index 2b25cbf..0000000 Binary files a/leenkx/blender/lnx/logicnode/postprocess/__pycache__/LN_colorgrading_get_midtone_node.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/postprocess/__pycache__/LN_colorgrading_get_shadow_node.cpython-311.pyc b/leenkx/blender/lnx/logicnode/postprocess/__pycache__/LN_colorgrading_get_shadow_node.cpython-311.pyc deleted file mode 100644 index 67b4fb9..0000000 Binary files a/leenkx/blender/lnx/logicnode/postprocess/__pycache__/LN_colorgrading_get_shadow_node.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/postprocess/__pycache__/LN_colorgrading_set_global_node.cpython-311.pyc b/leenkx/blender/lnx/logicnode/postprocess/__pycache__/LN_colorgrading_set_global_node.cpython-311.pyc deleted file mode 100644 index bb74743..0000000 Binary files a/leenkx/blender/lnx/logicnode/postprocess/__pycache__/LN_colorgrading_set_global_node.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/postprocess/__pycache__/LN_colorgrading_set_highlight_node.cpython-311.pyc b/leenkx/blender/lnx/logicnode/postprocess/__pycache__/LN_colorgrading_set_highlight_node.cpython-311.pyc deleted file mode 100644 index 387a6bb..0000000 Binary files a/leenkx/blender/lnx/logicnode/postprocess/__pycache__/LN_colorgrading_set_highlight_node.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/postprocess/__pycache__/LN_colorgrading_set_midtone_node.cpython-311.pyc b/leenkx/blender/lnx/logicnode/postprocess/__pycache__/LN_colorgrading_set_midtone_node.cpython-311.pyc deleted file mode 100644 index 3bdf5c8..0000000 Binary files a/leenkx/blender/lnx/logicnode/postprocess/__pycache__/LN_colorgrading_set_midtone_node.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/postprocess/__pycache__/LN_colorgrading_set_shadow_node.cpython-311.pyc b/leenkx/blender/lnx/logicnode/postprocess/__pycache__/LN_colorgrading_set_shadow_node.cpython-311.pyc deleted file mode 100644 index 84d01e6..0000000 Binary files a/leenkx/blender/lnx/logicnode/postprocess/__pycache__/LN_colorgrading_set_shadow_node.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/postprocess/__pycache__/LN_get_auto_exposure_settings.cpython-311.pyc b/leenkx/blender/lnx/logicnode/postprocess/__pycache__/LN_get_auto_exposure_settings.cpython-311.pyc deleted file mode 100644 index b1c720c..0000000 Binary files a/leenkx/blender/lnx/logicnode/postprocess/__pycache__/LN_get_auto_exposure_settings.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/postprocess/__pycache__/LN_get_bloom_settings.cpython-311.pyc b/leenkx/blender/lnx/logicnode/postprocess/__pycache__/LN_get_bloom_settings.cpython-311.pyc deleted file mode 100644 index 1f9e221..0000000 Binary files a/leenkx/blender/lnx/logicnode/postprocess/__pycache__/LN_get_bloom_settings.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/postprocess/__pycache__/LN_get_ca_settings.cpython-311.pyc b/leenkx/blender/lnx/logicnode/postprocess/__pycache__/LN_get_ca_settings.cpython-311.pyc deleted file mode 100644 index 810ca6b..0000000 Binary files a/leenkx/blender/lnx/logicnode/postprocess/__pycache__/LN_get_ca_settings.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/postprocess/__pycache__/LN_get_camera_post_process.cpython-311.pyc b/leenkx/blender/lnx/logicnode/postprocess/__pycache__/LN_get_camera_post_process.cpython-311.pyc deleted file mode 100644 index 0603092..0000000 Binary files a/leenkx/blender/lnx/logicnode/postprocess/__pycache__/LN_get_camera_post_process.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/postprocess/__pycache__/LN_get_lenstexture_settings.cpython-311.pyc b/leenkx/blender/lnx/logicnode/postprocess/__pycache__/LN_get_lenstexture_settings.cpython-311.pyc deleted file mode 100644 index 6c866d7..0000000 Binary files a/leenkx/blender/lnx/logicnode/postprocess/__pycache__/LN_get_lenstexture_settings.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/postprocess/__pycache__/LN_get_letterbox_settings.cpython-311.pyc b/leenkx/blender/lnx/logicnode/postprocess/__pycache__/LN_get_letterbox_settings.cpython-311.pyc deleted file mode 100644 index 834f325..0000000 Binary files a/leenkx/blender/lnx/logicnode/postprocess/__pycache__/LN_get_letterbox_settings.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/postprocess/__pycache__/LN_get_resolution_settings.cpython-311.pyc b/leenkx/blender/lnx/logicnode/postprocess/__pycache__/LN_get_resolution_settings.cpython-311.pyc deleted file mode 100644 index a4eff5f..0000000 Binary files a/leenkx/blender/lnx/logicnode/postprocess/__pycache__/LN_get_resolution_settings.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/postprocess/__pycache__/LN_get_sharpen_settings.cpython-311.pyc b/leenkx/blender/lnx/logicnode/postprocess/__pycache__/LN_get_sharpen_settings.cpython-311.pyc deleted file mode 100644 index dd1abb7..0000000 Binary files a/leenkx/blender/lnx/logicnode/postprocess/__pycache__/LN_get_sharpen_settings.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/postprocess/__pycache__/LN_get_ssao_settings.cpython-311.pyc b/leenkx/blender/lnx/logicnode/postprocess/__pycache__/LN_get_ssao_settings.cpython-311.pyc deleted file mode 100644 index 19d91a5..0000000 Binary files a/leenkx/blender/lnx/logicnode/postprocess/__pycache__/LN_get_ssao_settings.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/postprocess/__pycache__/LN_get_ssr_settings.cpython-311.pyc b/leenkx/blender/lnx/logicnode/postprocess/__pycache__/LN_get_ssr_settings.cpython-311.pyc deleted file mode 100644 index 5788157..0000000 Binary files a/leenkx/blender/lnx/logicnode/postprocess/__pycache__/LN_get_ssr_settings.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/postprocess/__pycache__/LN_get_volumetric_fog_settings.cpython-311.pyc b/leenkx/blender/lnx/logicnode/postprocess/__pycache__/LN_get_volumetric_fog_settings.cpython-311.pyc deleted file mode 100644 index cfac44f..0000000 Binary files a/leenkx/blender/lnx/logicnode/postprocess/__pycache__/LN_get_volumetric_fog_settings.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/postprocess/__pycache__/LN_get_volumetric_light_settings.cpython-311.pyc b/leenkx/blender/lnx/logicnode/postprocess/__pycache__/LN_get_volumetric_light_settings.cpython-311.pyc deleted file mode 100644 index de0529b..0000000 Binary files a/leenkx/blender/lnx/logicnode/postprocess/__pycache__/LN_get_volumetric_light_settings.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/postprocess/__pycache__/LN_lenstexture_set.cpython-311.pyc b/leenkx/blender/lnx/logicnode/postprocess/__pycache__/LN_lenstexture_set.cpython-311.pyc deleted file mode 100644 index 1cd73c9..0000000 Binary files a/leenkx/blender/lnx/logicnode/postprocess/__pycache__/LN_lenstexture_set.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/postprocess/__pycache__/LN_set_auto_exposure_settings.cpython-311.pyc b/leenkx/blender/lnx/logicnode/postprocess/__pycache__/LN_set_auto_exposure_settings.cpython-311.pyc deleted file mode 100644 index 2c9cc1b..0000000 Binary files a/leenkx/blender/lnx/logicnode/postprocess/__pycache__/LN_set_auto_exposure_settings.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/postprocess/__pycache__/LN_set_bloom_settings.cpython-311.pyc b/leenkx/blender/lnx/logicnode/postprocess/__pycache__/LN_set_bloom_settings.cpython-311.pyc deleted file mode 100644 index ba2dbc0..0000000 Binary files a/leenkx/blender/lnx/logicnode/postprocess/__pycache__/LN_set_bloom_settings.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/postprocess/__pycache__/LN_set_ca_settings.cpython-311.pyc b/leenkx/blender/lnx/logicnode/postprocess/__pycache__/LN_set_ca_settings.cpython-311.pyc deleted file mode 100644 index bb7e083..0000000 Binary files a/leenkx/blender/lnx/logicnode/postprocess/__pycache__/LN_set_ca_settings.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/postprocess/__pycache__/LN_set_camera_post_process.cpython-311.pyc b/leenkx/blender/lnx/logicnode/postprocess/__pycache__/LN_set_camera_post_process.cpython-311.pyc deleted file mode 100644 index 8e20c6f..0000000 Binary files a/leenkx/blender/lnx/logicnode/postprocess/__pycache__/LN_set_camera_post_process.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/postprocess/__pycache__/LN_set_letterbox_settings.cpython-311.pyc b/leenkx/blender/lnx/logicnode/postprocess/__pycache__/LN_set_letterbox_settings.cpython-311.pyc deleted file mode 100644 index 51b9709..0000000 Binary files a/leenkx/blender/lnx/logicnode/postprocess/__pycache__/LN_set_letterbox_settings.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/postprocess/__pycache__/LN_set_resolution_settings.cpython-311.pyc b/leenkx/blender/lnx/logicnode/postprocess/__pycache__/LN_set_resolution_settings.cpython-311.pyc deleted file mode 100644 index ed0eb12..0000000 Binary files a/leenkx/blender/lnx/logicnode/postprocess/__pycache__/LN_set_resolution_settings.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/postprocess/__pycache__/LN_set_sharpen_settings.cpython-311.pyc b/leenkx/blender/lnx/logicnode/postprocess/__pycache__/LN_set_sharpen_settings.cpython-311.pyc deleted file mode 100644 index 238365f..0000000 Binary files a/leenkx/blender/lnx/logicnode/postprocess/__pycache__/LN_set_sharpen_settings.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/postprocess/__pycache__/LN_set_ssao_settings.cpython-311.pyc b/leenkx/blender/lnx/logicnode/postprocess/__pycache__/LN_set_ssao_settings.cpython-311.pyc deleted file mode 100644 index 2a55bed..0000000 Binary files a/leenkx/blender/lnx/logicnode/postprocess/__pycache__/LN_set_ssao_settings.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/postprocess/__pycache__/LN_set_ssr_settings.cpython-311.pyc b/leenkx/blender/lnx/logicnode/postprocess/__pycache__/LN_set_ssr_settings.cpython-311.pyc deleted file mode 100644 index c17eb66..0000000 Binary files a/leenkx/blender/lnx/logicnode/postprocess/__pycache__/LN_set_ssr_settings.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/postprocess/__pycache__/LN_set_volumetric_fog_settings.cpython-311.pyc b/leenkx/blender/lnx/logicnode/postprocess/__pycache__/LN_set_volumetric_fog_settings.cpython-311.pyc deleted file mode 100644 index d5172bf..0000000 Binary files a/leenkx/blender/lnx/logicnode/postprocess/__pycache__/LN_set_volumetric_fog_settings.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/postprocess/__pycache__/LN_set_volumetric_light_settings.cpython-311.pyc b/leenkx/blender/lnx/logicnode/postprocess/__pycache__/LN_set_volumetric_light_settings.cpython-311.pyc deleted file mode 100644 index 0ae3180..0000000 Binary files a/leenkx/blender/lnx/logicnode/postprocess/__pycache__/LN_set_volumetric_light_settings.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/postprocess/__pycache__/__init__.cpython-311.pyc b/leenkx/blender/lnx/logicnode/postprocess/__pycache__/__init__.cpython-311.pyc deleted file mode 100644 index c51ca38..0000000 Binary files a/leenkx/blender/lnx/logicnode/postprocess/__pycache__/__init__.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/random/__pycache__/LN_probabilistic_output.cpython-311.pyc b/leenkx/blender/lnx/logicnode/random/__pycache__/LN_probabilistic_output.cpython-311.pyc deleted file mode 100644 index 032c722..0000000 Binary files a/leenkx/blender/lnx/logicnode/random/__pycache__/LN_probabilistic_output.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/random/__pycache__/LN_random_boolean.cpython-311.pyc b/leenkx/blender/lnx/logicnode/random/__pycache__/LN_random_boolean.cpython-311.pyc deleted file mode 100644 index 20950c1..0000000 Binary files a/leenkx/blender/lnx/logicnode/random/__pycache__/LN_random_boolean.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/random/__pycache__/LN_random_choice.cpython-311.pyc b/leenkx/blender/lnx/logicnode/random/__pycache__/LN_random_choice.cpython-311.pyc deleted file mode 100644 index 411f0bd..0000000 Binary files a/leenkx/blender/lnx/logicnode/random/__pycache__/LN_random_choice.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/random/__pycache__/LN_random_color.cpython-311.pyc b/leenkx/blender/lnx/logicnode/random/__pycache__/LN_random_color.cpython-311.pyc deleted file mode 100644 index 8e77dda..0000000 Binary files a/leenkx/blender/lnx/logicnode/random/__pycache__/LN_random_color.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/random/__pycache__/LN_random_float.cpython-311.pyc b/leenkx/blender/lnx/logicnode/random/__pycache__/LN_random_float.cpython-311.pyc deleted file mode 100644 index 5a24e05..0000000 Binary files a/leenkx/blender/lnx/logicnode/random/__pycache__/LN_random_float.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/random/__pycache__/LN_random_integer.cpython-311.pyc b/leenkx/blender/lnx/logicnode/random/__pycache__/LN_random_integer.cpython-311.pyc deleted file mode 100644 index 3d0d249..0000000 Binary files a/leenkx/blender/lnx/logicnode/random/__pycache__/LN_random_integer.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/random/__pycache__/LN_random_output.cpython-311.pyc b/leenkx/blender/lnx/logicnode/random/__pycache__/LN_random_output.cpython-311.pyc deleted file mode 100644 index a07c86a..0000000 Binary files a/leenkx/blender/lnx/logicnode/random/__pycache__/LN_random_output.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/random/__pycache__/LN_random_string.cpython-311.pyc b/leenkx/blender/lnx/logicnode/random/__pycache__/LN_random_string.cpython-311.pyc deleted file mode 100644 index 40a7d0f..0000000 Binary files a/leenkx/blender/lnx/logicnode/random/__pycache__/LN_random_string.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/random/__pycache__/LN_random_vector.cpython-311.pyc b/leenkx/blender/lnx/logicnode/random/__pycache__/LN_random_vector.cpython-311.pyc deleted file mode 100644 index c03a4d9..0000000 Binary files a/leenkx/blender/lnx/logicnode/random/__pycache__/LN_random_vector.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/random/__pycache__/__init__.cpython-311.pyc b/leenkx/blender/lnx/logicnode/random/__pycache__/__init__.cpython-311.pyc deleted file mode 100644 index 7511f1b..0000000 Binary files a/leenkx/blender/lnx/logicnode/random/__pycache__/__init__.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/renderpath/__pycache__/LN_create_render_target.cpython-311.pyc b/leenkx/blender/lnx/logicnode/renderpath/__pycache__/LN_create_render_target.cpython-311.pyc deleted file mode 100644 index a7b4a9d..0000000 Binary files a/leenkx/blender/lnx/logicnode/renderpath/__pycache__/LN_create_render_target.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/renderpath/__pycache__/LN_pause_active_camera_render.cpython-311.pyc b/leenkx/blender/lnx/logicnode/renderpath/__pycache__/LN_pause_active_camera_render.cpython-311.pyc deleted file mode 100644 index 736fd37..0000000 Binary files a/leenkx/blender/lnx/logicnode/renderpath/__pycache__/LN_pause_active_camera_render.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/renderpath/__pycache__/LN_rotate_render_target.cpython-311.pyc b/leenkx/blender/lnx/logicnode/renderpath/__pycache__/LN_rotate_render_target.cpython-311.pyc deleted file mode 100644 index 074f90a..0000000 Binary files a/leenkx/blender/lnx/logicnode/renderpath/__pycache__/LN_rotate_render_target.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/renderpath/__pycache__/LN_set_msaa_quality.cpython-311.pyc b/leenkx/blender/lnx/logicnode/renderpath/__pycache__/LN_set_msaa_quality.cpython-311.pyc deleted file mode 100644 index 409f12a..0000000 Binary files a/leenkx/blender/lnx/logicnode/renderpath/__pycache__/LN_set_msaa_quality.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/renderpath/__pycache__/LN_set_post_process_quality.cpython-311.pyc b/leenkx/blender/lnx/logicnode/renderpath/__pycache__/LN_set_post_process_quality.cpython-311.pyc deleted file mode 100644 index 347e29a..0000000 Binary files a/leenkx/blender/lnx/logicnode/renderpath/__pycache__/LN_set_post_process_quality.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/renderpath/__pycache__/LN_set_shader_uniform.cpython-311.pyc b/leenkx/blender/lnx/logicnode/renderpath/__pycache__/LN_set_shader_uniform.cpython-311.pyc deleted file mode 100644 index 610024b..0000000 Binary files a/leenkx/blender/lnx/logicnode/renderpath/__pycache__/LN_set_shader_uniform.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/renderpath/__pycache__/LN_set_shadows_quality.cpython-311.pyc b/leenkx/blender/lnx/logicnode/renderpath/__pycache__/LN_set_shadows_quality.cpython-311.pyc deleted file mode 100644 index 3c0fbeb..0000000 Binary files a/leenkx/blender/lnx/logicnode/renderpath/__pycache__/LN_set_shadows_quality.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/renderpath/__pycache__/LN_set_ssaa_quality.cpython-311.pyc b/leenkx/blender/lnx/logicnode/renderpath/__pycache__/LN_set_ssaa_quality.cpython-311.pyc deleted file mode 100644 index 7f19efe..0000000 Binary files a/leenkx/blender/lnx/logicnode/renderpath/__pycache__/LN_set_ssaa_quality.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/renderpath/__pycache__/__init__.cpython-311.pyc b/leenkx/blender/lnx/logicnode/renderpath/__pycache__/__init__.cpython-311.pyc deleted file mode 100644 index 0c6e35b..0000000 Binary files a/leenkx/blender/lnx/logicnode/renderpath/__pycache__/__init__.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/scene/__pycache__/LN_add_object_to_collection.cpython-311.pyc b/leenkx/blender/lnx/logicnode/scene/__pycache__/LN_add_object_to_collection.cpython-311.pyc deleted file mode 100644 index ffda10b..0000000 Binary files a/leenkx/blender/lnx/logicnode/scene/__pycache__/LN_add_object_to_collection.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/scene/__pycache__/LN_collection.cpython-311.pyc b/leenkx/blender/lnx/logicnode/scene/__pycache__/LN_collection.cpython-311.pyc deleted file mode 100644 index 843c008..0000000 Binary files a/leenkx/blender/lnx/logicnode/scene/__pycache__/LN_collection.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/scene/__pycache__/LN_create_collection.cpython-311.pyc b/leenkx/blender/lnx/logicnode/scene/__pycache__/LN_create_collection.cpython-311.pyc deleted file mode 100644 index 3fedd49..0000000 Binary files a/leenkx/blender/lnx/logicnode/scene/__pycache__/LN_create_collection.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/scene/__pycache__/LN_get_collection.cpython-311.pyc b/leenkx/blender/lnx/logicnode/scene/__pycache__/LN_get_collection.cpython-311.pyc deleted file mode 100644 index ffad2b6..0000000 Binary files a/leenkx/blender/lnx/logicnode/scene/__pycache__/LN_get_collection.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/scene/__pycache__/LN_get_object_collection.cpython-311.pyc b/leenkx/blender/lnx/logicnode/scene/__pycache__/LN_get_object_collection.cpython-311.pyc deleted file mode 100644 index ba2630f..0000000 Binary files a/leenkx/blender/lnx/logicnode/scene/__pycache__/LN_get_object_collection.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/scene/__pycache__/LN_get_scene_active.cpython-311.pyc b/leenkx/blender/lnx/logicnode/scene/__pycache__/LN_get_scene_active.cpython-311.pyc deleted file mode 100644 index fa8dcad..0000000 Binary files a/leenkx/blender/lnx/logicnode/scene/__pycache__/LN_get_scene_active.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/scene/__pycache__/LN_get_scene_root.cpython-311.pyc b/leenkx/blender/lnx/logicnode/scene/__pycache__/LN_get_scene_root.cpython-311.pyc deleted file mode 100644 index d8466f0..0000000 Binary files a/leenkx/blender/lnx/logicnode/scene/__pycache__/LN_get_scene_root.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/scene/__pycache__/LN_global_object.cpython-311.pyc b/leenkx/blender/lnx/logicnode/scene/__pycache__/LN_global_object.cpython-311.pyc deleted file mode 100644 index 6e8d66f..0000000 Binary files a/leenkx/blender/lnx/logicnode/scene/__pycache__/LN_global_object.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/scene/__pycache__/LN_remove_collection.cpython-311.pyc b/leenkx/blender/lnx/logicnode/scene/__pycache__/LN_remove_collection.cpython-311.pyc deleted file mode 100644 index 79e24cc..0000000 Binary files a/leenkx/blender/lnx/logicnode/scene/__pycache__/LN_remove_collection.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/scene/__pycache__/LN_remove_object_from_collection.cpython-311.pyc b/leenkx/blender/lnx/logicnode/scene/__pycache__/LN_remove_object_from_collection.cpython-311.pyc deleted file mode 100644 index 3456a15..0000000 Binary files a/leenkx/blender/lnx/logicnode/scene/__pycache__/LN_remove_object_from_collection.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/scene/__pycache__/LN_remove_scene_active.cpython-311.pyc b/leenkx/blender/lnx/logicnode/scene/__pycache__/LN_remove_scene_active.cpython-311.pyc deleted file mode 100644 index f05b80d..0000000 Binary files a/leenkx/blender/lnx/logicnode/scene/__pycache__/LN_remove_scene_active.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/scene/__pycache__/LN_set_scene_active.cpython-311.pyc b/leenkx/blender/lnx/logicnode/scene/__pycache__/LN_set_scene_active.cpython-311.pyc deleted file mode 100644 index bad3290..0000000 Binary files a/leenkx/blender/lnx/logicnode/scene/__pycache__/LN_set_scene_active.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/scene/__pycache__/LN_spawn_collection.cpython-311.pyc b/leenkx/blender/lnx/logicnode/scene/__pycache__/LN_spawn_collection.cpython-311.pyc deleted file mode 100644 index ced9367..0000000 Binary files a/leenkx/blender/lnx/logicnode/scene/__pycache__/LN_spawn_collection.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/scene/__pycache__/LN_spawn_scene.cpython-311.pyc b/leenkx/blender/lnx/logicnode/scene/__pycache__/LN_spawn_scene.cpython-311.pyc deleted file mode 100644 index fe48e21..0000000 Binary files a/leenkx/blender/lnx/logicnode/scene/__pycache__/LN_spawn_scene.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/scene/__pycache__/__init__.cpython-311.pyc b/leenkx/blender/lnx/logicnode/scene/__pycache__/__init__.cpython-311.pyc deleted file mode 100644 index 9872510..0000000 Binary files a/leenkx/blender/lnx/logicnode/scene/__pycache__/__init__.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/sound/__pycache__/LN_pause_speaker.cpython-311.pyc b/leenkx/blender/lnx/logicnode/sound/__pycache__/LN_pause_speaker.cpython-311.pyc deleted file mode 100644 index 5c67058..0000000 Binary files a/leenkx/blender/lnx/logicnode/sound/__pycache__/LN_pause_speaker.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/sound/__pycache__/LN_play_sound.cpython-311.pyc b/leenkx/blender/lnx/logicnode/sound/__pycache__/LN_play_sound.cpython-311.pyc deleted file mode 100644 index b577c56..0000000 Binary files a/leenkx/blender/lnx/logicnode/sound/__pycache__/LN_play_sound.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/sound/__pycache__/LN_play_speaker.cpython-311.pyc b/leenkx/blender/lnx/logicnode/sound/__pycache__/LN_play_speaker.cpython-311.pyc deleted file mode 100644 index 8dccdb4..0000000 Binary files a/leenkx/blender/lnx/logicnode/sound/__pycache__/LN_play_speaker.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/sound/__pycache__/LN_set_sound_speaker.cpython-311.pyc b/leenkx/blender/lnx/logicnode/sound/__pycache__/LN_set_sound_speaker.cpython-311.pyc deleted file mode 100644 index 428f70c..0000000 Binary files a/leenkx/blender/lnx/logicnode/sound/__pycache__/LN_set_sound_speaker.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/sound/__pycache__/LN_set_volume_speaker.cpython-311.pyc b/leenkx/blender/lnx/logicnode/sound/__pycache__/LN_set_volume_speaker.cpython-311.pyc deleted file mode 100644 index a072e00..0000000 Binary files a/leenkx/blender/lnx/logicnode/sound/__pycache__/LN_set_volume_speaker.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/sound/__pycache__/LN_stop_speaker.cpython-311.pyc b/leenkx/blender/lnx/logicnode/sound/__pycache__/LN_stop_speaker.cpython-311.pyc deleted file mode 100644 index 92ee7aa..0000000 Binary files a/leenkx/blender/lnx/logicnode/sound/__pycache__/LN_stop_speaker.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/sound/__pycache__/__init__.cpython-311.pyc b/leenkx/blender/lnx/logicnode/sound/__pycache__/__init__.cpython-311.pyc deleted file mode 100644 index 5c4d498..0000000 Binary files a/leenkx/blender/lnx/logicnode/sound/__pycache__/__init__.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/string/__pycache__/LN_concatenate_string.cpython-311.pyc b/leenkx/blender/lnx/logicnode/string/__pycache__/LN_concatenate_string.cpython-311.pyc deleted file mode 100644 index 00a5a15..0000000 Binary files a/leenkx/blender/lnx/logicnode/string/__pycache__/LN_concatenate_string.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/string/__pycache__/LN_parse_float.cpython-311.pyc b/leenkx/blender/lnx/logicnode/string/__pycache__/LN_parse_float.cpython-311.pyc deleted file mode 100644 index 0d34e07..0000000 Binary files a/leenkx/blender/lnx/logicnode/string/__pycache__/LN_parse_float.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/string/__pycache__/LN_parse_int.cpython-311.pyc b/leenkx/blender/lnx/logicnode/string/__pycache__/LN_parse_int.cpython-311.pyc deleted file mode 100644 index 1a94297..0000000 Binary files a/leenkx/blender/lnx/logicnode/string/__pycache__/LN_parse_int.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/string/__pycache__/LN_split_string.cpython-311.pyc b/leenkx/blender/lnx/logicnode/string/__pycache__/LN_split_string.cpython-311.pyc deleted file mode 100644 index 00dbfe3..0000000 Binary files a/leenkx/blender/lnx/logicnode/string/__pycache__/LN_split_string.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/string/__pycache__/LN_string.cpython-311.pyc b/leenkx/blender/lnx/logicnode/string/__pycache__/LN_string.cpython-311.pyc deleted file mode 100644 index 4af1438..0000000 Binary files a/leenkx/blender/lnx/logicnode/string/__pycache__/LN_string.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/string/__pycache__/LN_string_case.cpython-311.pyc b/leenkx/blender/lnx/logicnode/string/__pycache__/LN_string_case.cpython-311.pyc deleted file mode 100644 index 0ef8b6f..0000000 Binary files a/leenkx/blender/lnx/logicnode/string/__pycache__/LN_string_case.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/string/__pycache__/LN_string_charat.cpython-311.pyc b/leenkx/blender/lnx/logicnode/string/__pycache__/LN_string_charat.cpython-311.pyc deleted file mode 100644 index 57adf40..0000000 Binary files a/leenkx/blender/lnx/logicnode/string/__pycache__/LN_string_charat.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/string/__pycache__/LN_string_contains.cpython-311.pyc b/leenkx/blender/lnx/logicnode/string/__pycache__/LN_string_contains.cpython-311.pyc deleted file mode 100644 index fb37c8f..0000000 Binary files a/leenkx/blender/lnx/logicnode/string/__pycache__/LN_string_contains.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/string/__pycache__/LN_string_length.cpython-311.pyc b/leenkx/blender/lnx/logicnode/string/__pycache__/LN_string_length.cpython-311.pyc deleted file mode 100644 index 8b14093..0000000 Binary files a/leenkx/blender/lnx/logicnode/string/__pycache__/LN_string_length.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/string/__pycache__/LN_string_replace.cpython-311.pyc b/leenkx/blender/lnx/logicnode/string/__pycache__/LN_string_replace.cpython-311.pyc deleted file mode 100644 index 513e867..0000000 Binary files a/leenkx/blender/lnx/logicnode/string/__pycache__/LN_string_replace.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/string/__pycache__/LN_sub_string.cpython-311.pyc b/leenkx/blender/lnx/logicnode/string/__pycache__/LN_sub_string.cpython-311.pyc deleted file mode 100644 index 52d8afd..0000000 Binary files a/leenkx/blender/lnx/logicnode/string/__pycache__/LN_sub_string.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/string/__pycache__/__init__.cpython-311.pyc b/leenkx/blender/lnx/logicnode/string/__pycache__/__init__.cpython-311.pyc deleted file mode 100644 index bfcc981..0000000 Binary files a/leenkx/blender/lnx/logicnode/string/__pycache__/__init__.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/trait/__pycache__/LN_add_trait_to_object.cpython-311.pyc b/leenkx/blender/lnx/logicnode/trait/__pycache__/LN_add_trait_to_object.cpython-311.pyc deleted file mode 100644 index c8e53b2..0000000 Binary files a/leenkx/blender/lnx/logicnode/trait/__pycache__/LN_add_trait_to_object.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/trait/__pycache__/LN_get_object_trait.cpython-311.pyc b/leenkx/blender/lnx/logicnode/trait/__pycache__/LN_get_object_trait.cpython-311.pyc deleted file mode 100644 index ecb4b9d..0000000 Binary files a/leenkx/blender/lnx/logicnode/trait/__pycache__/LN_get_object_trait.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/trait/__pycache__/LN_get_object_traits.cpython-311.pyc b/leenkx/blender/lnx/logicnode/trait/__pycache__/LN_get_object_traits.cpython-311.pyc deleted file mode 100644 index 26690df..0000000 Binary files a/leenkx/blender/lnx/logicnode/trait/__pycache__/LN_get_object_traits.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/trait/__pycache__/LN_get_trait_name.cpython-311.pyc b/leenkx/blender/lnx/logicnode/trait/__pycache__/LN_get_trait_name.cpython-311.pyc deleted file mode 100644 index b868b7a..0000000 Binary files a/leenkx/blender/lnx/logicnode/trait/__pycache__/LN_get_trait_name.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/trait/__pycache__/LN_get_trait_paused.cpython-311.pyc b/leenkx/blender/lnx/logicnode/trait/__pycache__/LN_get_trait_paused.cpython-311.pyc deleted file mode 100644 index 6014c0f..0000000 Binary files a/leenkx/blender/lnx/logicnode/trait/__pycache__/LN_get_trait_paused.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/trait/__pycache__/LN_remove_trait.cpython-311.pyc b/leenkx/blender/lnx/logicnode/trait/__pycache__/LN_remove_trait.cpython-311.pyc deleted file mode 100644 index 7c38192..0000000 Binary files a/leenkx/blender/lnx/logicnode/trait/__pycache__/LN_remove_trait.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/trait/__pycache__/LN_remove_trait_from_object.cpython-311.pyc b/leenkx/blender/lnx/logicnode/trait/__pycache__/LN_remove_trait_from_object.cpython-311.pyc deleted file mode 100644 index e404169..0000000 Binary files a/leenkx/blender/lnx/logicnode/trait/__pycache__/LN_remove_trait_from_object.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/trait/__pycache__/LN_self_trait.cpython-311.pyc b/leenkx/blender/lnx/logicnode/trait/__pycache__/LN_self_trait.cpython-311.pyc deleted file mode 100644 index 243785a..0000000 Binary files a/leenkx/blender/lnx/logicnode/trait/__pycache__/LN_self_trait.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/trait/__pycache__/LN_set_trait_paused.cpython-311.pyc b/leenkx/blender/lnx/logicnode/trait/__pycache__/LN_set_trait_paused.cpython-311.pyc deleted file mode 100644 index e111492..0000000 Binary files a/leenkx/blender/lnx/logicnode/trait/__pycache__/LN_set_trait_paused.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/trait/__pycache__/LN_trait.cpython-311.pyc b/leenkx/blender/lnx/logicnode/trait/__pycache__/LN_trait.cpython-311.pyc deleted file mode 100644 index b1bbd4c..0000000 Binary files a/leenkx/blender/lnx/logicnode/trait/__pycache__/LN_trait.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/trait/__pycache__/__init__.cpython-311.pyc b/leenkx/blender/lnx/logicnode/trait/__pycache__/__init__.cpython-311.pyc deleted file mode 100644 index 401626c..0000000 Binary files a/leenkx/blender/lnx/logicnode/trait/__pycache__/__init__.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/transform/LN_set_look_at_rotation.py b/leenkx/blender/lnx/logicnode/transform/LN_set_look_at_rotation.py deleted file mode 100644 index b2d76e8..0000000 --- a/leenkx/blender/lnx/logicnode/transform/LN_set_look_at_rotation.py +++ /dev/null @@ -1,367 +0,0 @@ -from lnx.logicnode.lnx_nodes import * -import bpy - -class SetLookAtRotationNode(LnxLogicTreeNode): - """Returns a rotation that makes an object look at a target object or location""" - bl_idname = 'LNSetLookAtRotationNode' - bl_label = 'Set Look At Rotation' - lnx_section = 'rotation' - lnx_version = 1 - - use_vector: bpy.props.BoolProperty( - name='Use Vector for Target Location', - description='Use a vector location instead of a target object', - default=False, - update=lambda self, context: self.update_sockets(context) - ) - - use_source_vector: bpy.props.BoolProperty( - name='Use Vector for Source', - description='Use a vector location instead of a source object', - default=False, - update=lambda self, context: self.update_sockets(context) - ) - - disable_rotation_on_align_axis: bpy.props.BoolProperty( - name='Disable Rotation on Aligning Axis', - description='Zero out the rotation on the aligning axis after look at is applied', - default=False, - update=lambda self, context: self.update_sockets(context) - ) - - damping: bpy.props.FloatProperty( - name='Damping', - description='Amount of damping for rotation (0.0 = instant, 1.0 = no movement)', - default=0.0, - min=0.0, - max=1.0, - step=10, - precision=2, - update=lambda self, context: self.update_damping_socket(context) - ) - - # Store object references as custom properties - source_object_name: bpy.props.StringProperty(default="") - target_object_name: bpy.props.StringProperty(default="") - - property0: HaxeEnumProperty( - 'property0', - items = [('X', ' X', 'X'), - ('-X', '-X', '-X'), - ('Y', ' Y', 'Y'), - ('-Y', '-Y', '-Y'), - ('Z', ' Z', 'Z'), - ('-Z', '-Z', '-Z')], - name='With', default='Z') - - property1: HaxeEnumProperty( - 'property1', - items = [('true', 'True', 'True'), - ('false', 'False', 'False')], - name='Use Vector for Target Location', default='false') - - property2: HaxeEnumProperty( - 'property2', - items = [('true', 'True', 'True'), - ('false', 'False', 'False')], - name='Use Vector for Source', default='false') - - property3: bpy.props.StringProperty(name='Damping', default='0.0') - - property4: HaxeEnumProperty( - 'property4', - items = [('true', 'True', 'True'), - ('false', 'False', 'False')], - name='Disable Rotation on Aligning Axis', default='false') - - def lnx_init(self, context): - # Add inputs in standard order - self.inputs.new('LnxNodeSocketAction', 'In') - - # Add the initial source input - self.inputs.new('LnxNodeSocketObject', 'Source Object') - - # Add the initial target input - self.inputs.new('LnxNodeSocketObject', 'Target Object') - - # Add damping input socket with default value - damping_socket = self.inputs.new('LnxFloatSocket', 'Damping') - damping_socket.default_value_raw = 0.0 - - # Add outputs - self.add_output('LnxNodeSocketAction', 'Out') - # Add rotation output socket - self.add_output('LnxRotationSocket', 'Rotation') - - def draw_buttons(self, context, layout): - # 1. Axis Selector - layout.prop(self, 'property0') - - # 2. 'Use Vector for Source' checkbox - layout.prop(self, 'use_source_vector') - - # 3. 'Use Vector for Target Location' checkbox - layout.prop(self, 'use_vector') - - # 4. 'Disable Rotation on Aligning Axis' checkbox - layout.prop(self, 'disable_rotation_on_align_axis') - - # Note: Damping is now handled by the input socket - - def update_sockets(self, context): - # Update the Haxe properties to match the Python properties - self.property1 = 'true' if self.use_vector else 'false' - self.property2 = 'true' if self.use_source_vector else 'false' - self.property3 = str(self.damping) # Keep for backward compatibility - self.property4 = 'true' if self.disable_rotation_on_align_axis else 'false' - - # Store current object references before changing sockets - self.save_object_references() - - # Helper to find a socket by name - def find_input_socket(name): - for i, s in enumerate(self.inputs): - if s.name == name: - return i, s - return -1, None - - # Ensure we have the 'In' socket at index 0 - in_idx, in_socket = find_input_socket('In') - if in_idx == -1: - # If 'In' socket is missing, add it at index 0 - self.inputs.new('LnxNodeSocketAction', 'In') - - # Fixed indices for our sockets - SOURCE_INDEX = 1 - TARGET_INDEX = 2 - DAMPING_INDEX = 3 - - # Get current socket information - source_names = ['Source Object', 'Source Location'] - target_names = ['Target Object', 'Target Location'] - - # Find current source and target sockets - source_idx = -1 - source_socket = None - for name in source_names: - idx, socket = find_input_socket(name) - if idx != -1: - source_idx = idx - source_socket = socket - break - - target_idx = -1 - target_socket = None - for name in target_names: - idx, socket = find_input_socket(name) - if idx != -1: - target_idx = idx - target_socket = socket - break - - # Expected types based on current settings - expected_source_name = 'Source Location' if self.use_source_vector else 'Source Object' - expected_source_type = 'LnxVectorSocket' if self.use_source_vector else 'LnxNodeSocketObject' - - expected_target_name = 'Target Location' if self.use_vector else 'Target Object' - expected_target_type = 'LnxVectorSocket' if self.use_vector else 'LnxNodeSocketObject' - - # Ensure we have exactly 4 sockets (In, Source, Target, Damping) in the correct order - while len(self.inputs) > 4: - # Remove any extra sockets - self.inputs.remove(self.inputs[-1]) - - # Make sure we have exactly 4 sockets - while len(self.inputs) < 4: - if len(self.inputs) == 0: - self.inputs.new('LnxNodeSocketAction', 'In') - elif len(self.inputs) == 1: - self.inputs.new(expected_source_type, expected_source_name) - elif len(self.inputs) == 2: - self.inputs.new(expected_target_type, expected_target_name) - elif len(self.inputs) == 3: - damping_socket = self.inputs.new('LnxFloatSocket', 'Damping') - damping_socket.default_value_raw = self.damping - - # Now update the source socket if needed - if source_socket and source_socket.name != expected_source_name: - # Store links before removing - links = [] - for link in source_socket.links: - links.append(link.from_socket) - - # Get the index where this socket should be - correct_idx = SOURCE_INDEX - - # Create the new socket at the correct position - self.inputs.remove(source_socket) - new_socket = self.inputs.new(expected_source_type, expected_source_name) - - # Move the new socket to the correct position - if not new_socket.is_linked: # Only move if not linked - # Move the socket to the correct index - if correct_idx < len(self.inputs) - 1: - self.inputs.move(len(self.inputs) - 1, correct_idx) - - # Restore links - if links and hasattr(context, 'space_data') and context.space_data and hasattr(context.space_data, 'edit_tree'): - for link_socket in links: - context.space_data.edit_tree.links.new(link_socket, new_socket) - - # Update the target socket if needed - if target_socket and target_socket.name != expected_target_name: - # Store links before removing - links = [] - for link in target_socket.links: - links.append(link.from_socket) - - # Get the index where this socket should be - correct_idx = TARGET_INDEX - - # Create the new socket at the correct position - self.inputs.remove(target_socket) - new_socket = self.inputs.new(expected_target_type, expected_target_name) - - # Move the new socket to the correct position - if not new_socket.is_linked: # Only move if not linked - # Move the socket to the correct index - if correct_idx < len(self.inputs) - 1: - self.inputs.move(len(self.inputs) - 1, correct_idx) - - # Restore links - if links and hasattr(context, 'space_data') and context.space_data and hasattr(context.space_data, 'edit_tree'): - for link_socket in links: - context.space_data.edit_tree.links.new(link_socket, new_socket) - - # Make a final check to ensure the sockets are in the correct order - # This is a safety measure to ensure consistent UI - in_idx, in_socket = find_input_socket('In') - source_idx = -1 - for name in source_names: - idx, _ = find_input_socket(name) - if idx != -1: - source_idx = idx - break - - target_idx = -1 - for name in target_names: - idx, _ = find_input_socket(name) - if idx != -1: - target_idx = idx - break - - damping_idx, damping_socket = find_input_socket('Damping') - - # If the order is wrong, fix it by recreating the sockets in the correct order - if not (in_idx == 0 and source_idx == 1 and target_idx == 2 and damping_idx == 3): - # Store all links - all_links = {} - - for i, socket in enumerate(self.inputs): - # Store links - links = [] - for link in socket.links: - links.append(link.from_socket) - all_links[socket.name] = links - - # Clear all inputs - while len(self.inputs) > 0: - self.inputs.remove(self.inputs[0]) - - # Recreate in the correct order - in_socket = self.inputs.new('LnxNodeSocketAction', 'In') - source_socket = self.inputs.new(expected_source_type, expected_source_name) - target_socket = self.inputs.new(expected_target_type, expected_target_name) - damping_socket = self.inputs.new('LnxFloatSocket', 'Damping') - damping_socket.default_value_raw = self.damping - - # Restore links - if hasattr(context, 'space_data') and context.space_data and hasattr(context.space_data, 'edit_tree'): - # Restore In links - if 'In' in all_links: - for link_socket in all_links['In']: - context.space_data.edit_tree.links.new(link_socket, in_socket) - - # Restore Source links - source_links = [] - for name in source_names: - if name in all_links: - source_links.extend(all_links[name]) - for link_socket in source_links: - context.space_data.edit_tree.links.new(link_socket, source_socket) - - # Restore Target links - target_links = [] - for name in target_names: - if name in all_links: - target_links.extend(all_links[name]) - for link_socket in target_links: - context.space_data.edit_tree.links.new(link_socket, target_socket) - - # Restore Damping links - if 'Damping' in all_links: - for link_socket in all_links['Damping']: - context.space_data.edit_tree.links.new(link_socket, damping_socket) - - # Restore object references after socket changes - self.restore_object_references() - - def update_damping_socket(self, context): - """Update the damping socket default value when the slider changes""" - for socket in self.inputs: - if socket.name == 'Damping' and hasattr(socket, 'default_value_raw'): - socket.default_value_raw = self.damping - break - - def save_object_references(self): - """Save object references to custom properties""" - # Find source and target object sockets - for socket in self.inputs: - if socket.name == 'Source Object' and socket.is_linked: - for link in socket.links: - if hasattr(link.from_node, 'item') and link.from_node.item: - self.source_object_name = link.from_node.item.name - - if socket.name == 'Target Object' and socket.is_linked: - for link in socket.links: - if hasattr(link.from_node, 'item') and link.from_node.item: - self.target_object_name = link.from_node.item.name - - def restore_object_references(self): - """Restore object references from custom properties""" - # Only restore if we're not using vector inputs - if not self.use_source_vector: - # Find source object socket - for socket in self.inputs: - if socket.name == 'Source Object' and not socket.is_linked: - # Try to find the object in the scene - if self.source_object_name and self.source_object_name in bpy.context.scene.objects: - # Find the appropriate object node in the node tree - if hasattr(self, 'id_data') and hasattr(self.id_data, 'nodes'): - for node in self.id_data.nodes: - if (node.bl_idname == 'LNObjectNode' and - hasattr(node, 'item') and - node.item and - node.item.name == self.source_object_name): - # Create a link between the nodes - if hasattr(self.id_data, 'links'): - self.id_data.links.new(node.outputs[0], socket) - break - - if not self.use_vector: - # Find target object socket - for socket in self.inputs: - if socket.name == 'Target Object' and not socket.is_linked: - # Try to find the object in the scene - if self.target_object_name and self.target_object_name in bpy.context.scene.objects: - # Find the appropriate object node in the node tree - if hasattr(self, 'id_data') and hasattr(self.id_data, 'nodes'): - for node in self.id_data.nodes: - if (node.bl_idname == 'LNObjectNode' and - hasattr(node, 'item') and - node.item and - node.item.name == self.target_object_name): - # Create a link between the nodes - if hasattr(self.id_data, 'links'): - self.id_data.links.new(node.outputs[0], socket) - break diff --git a/leenkx/blender/lnx/logicnode/transform/__pycache__/LN_append_transform.cpython-311.pyc b/leenkx/blender/lnx/logicnode/transform/__pycache__/LN_append_transform.cpython-311.pyc deleted file mode 100644 index 037f58e..0000000 Binary files a/leenkx/blender/lnx/logicnode/transform/__pycache__/LN_append_transform.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/transform/__pycache__/LN_get_object_dimension.cpython-311.pyc b/leenkx/blender/lnx/logicnode/transform/__pycache__/LN_get_object_dimension.cpython-311.pyc deleted file mode 100644 index 2d9d159..0000000 Binary files a/leenkx/blender/lnx/logicnode/transform/__pycache__/LN_get_object_dimension.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/transform/__pycache__/LN_get_object_location.cpython-311.pyc b/leenkx/blender/lnx/logicnode/transform/__pycache__/LN_get_object_location.cpython-311.pyc deleted file mode 100644 index 6ab0fe3..0000000 Binary files a/leenkx/blender/lnx/logicnode/transform/__pycache__/LN_get_object_location.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/transform/__pycache__/LN_get_object_rotation.cpython-311.pyc b/leenkx/blender/lnx/logicnode/transform/__pycache__/LN_get_object_rotation.cpython-311.pyc deleted file mode 100644 index bc88484..0000000 Binary files a/leenkx/blender/lnx/logicnode/transform/__pycache__/LN_get_object_rotation.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/transform/__pycache__/LN_get_object_scale.cpython-311.pyc b/leenkx/blender/lnx/logicnode/transform/__pycache__/LN_get_object_scale.cpython-311.pyc deleted file mode 100644 index 559393c..0000000 Binary files a/leenkx/blender/lnx/logicnode/transform/__pycache__/LN_get_object_scale.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/transform/__pycache__/LN_get_object_transform.cpython-311.pyc b/leenkx/blender/lnx/logicnode/transform/__pycache__/LN_get_object_transform.cpython-311.pyc deleted file mode 100644 index c8aa52c..0000000 Binary files a/leenkx/blender/lnx/logicnode/transform/__pycache__/LN_get_object_transform.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/transform/__pycache__/LN_get_world_orientation.cpython-311.pyc b/leenkx/blender/lnx/logicnode/transform/__pycache__/LN_get_world_orientation.cpython-311.pyc deleted file mode 100644 index 02154c7..0000000 Binary files a/leenkx/blender/lnx/logicnode/transform/__pycache__/LN_get_world_orientation.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/transform/__pycache__/LN_look_at.cpython-311.pyc b/leenkx/blender/lnx/logicnode/transform/__pycache__/LN_look_at.cpython-311.pyc deleted file mode 100644 index dc10eae..0000000 Binary files a/leenkx/blender/lnx/logicnode/transform/__pycache__/LN_look_at.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/transform/__pycache__/LN_rotate_object.cpython-311.pyc b/leenkx/blender/lnx/logicnode/transform/__pycache__/LN_rotate_object.cpython-311.pyc deleted file mode 100644 index d46ebb0..0000000 Binary files a/leenkx/blender/lnx/logicnode/transform/__pycache__/LN_rotate_object.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/transform/__pycache__/LN_separate_rotation.cpython-311.pyc b/leenkx/blender/lnx/logicnode/transform/__pycache__/LN_separate_rotation.cpython-311.pyc deleted file mode 100644 index 6e3d2a0..0000000 Binary files a/leenkx/blender/lnx/logicnode/transform/__pycache__/LN_separate_rotation.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/transform/__pycache__/LN_separate_transform.cpython-311.pyc b/leenkx/blender/lnx/logicnode/transform/__pycache__/LN_separate_transform.cpython-311.pyc deleted file mode 100644 index d09ca61..0000000 Binary files a/leenkx/blender/lnx/logicnode/transform/__pycache__/LN_separate_transform.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/transform/__pycache__/LN_set_look_at_rotation.cpython-311.pyc b/leenkx/blender/lnx/logicnode/transform/__pycache__/LN_set_look_at_rotation.cpython-311.pyc deleted file mode 100644 index d4293d8..0000000 Binary files a/leenkx/blender/lnx/logicnode/transform/__pycache__/LN_set_look_at_rotation.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/transform/__pycache__/LN_set_object_location.cpython-311.pyc b/leenkx/blender/lnx/logicnode/transform/__pycache__/LN_set_object_location.cpython-311.pyc deleted file mode 100644 index e2dfdda..0000000 Binary files a/leenkx/blender/lnx/logicnode/transform/__pycache__/LN_set_object_location.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/transform/__pycache__/LN_set_object_rotation.cpython-311.pyc b/leenkx/blender/lnx/logicnode/transform/__pycache__/LN_set_object_rotation.cpython-311.pyc deleted file mode 100644 index 1709b0a..0000000 Binary files a/leenkx/blender/lnx/logicnode/transform/__pycache__/LN_set_object_rotation.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/transform/__pycache__/LN_set_object_scale.cpython-311.pyc b/leenkx/blender/lnx/logicnode/transform/__pycache__/LN_set_object_scale.cpython-311.pyc deleted file mode 100644 index 2c5cdfd..0000000 Binary files a/leenkx/blender/lnx/logicnode/transform/__pycache__/LN_set_object_scale.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/transform/__pycache__/LN_set_object_transform.cpython-311.pyc b/leenkx/blender/lnx/logicnode/transform/__pycache__/LN_set_object_transform.cpython-311.pyc deleted file mode 100644 index f84b620..0000000 Binary files a/leenkx/blender/lnx/logicnode/transform/__pycache__/LN_set_object_transform.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/transform/__pycache__/LN_transform_math.cpython-311.pyc b/leenkx/blender/lnx/logicnode/transform/__pycache__/LN_transform_math.cpython-311.pyc deleted file mode 100644 index 8c04143..0000000 Binary files a/leenkx/blender/lnx/logicnode/transform/__pycache__/LN_transform_math.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/transform/__pycache__/LN_transform_to_rotation.cpython-311.pyc b/leenkx/blender/lnx/logicnode/transform/__pycache__/LN_transform_to_rotation.cpython-311.pyc deleted file mode 100644 index 4a165fe..0000000 Binary files a/leenkx/blender/lnx/logicnode/transform/__pycache__/LN_transform_to_rotation.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/transform/__pycache__/LN_transform_to_vector.cpython-311.pyc b/leenkx/blender/lnx/logicnode/transform/__pycache__/LN_transform_to_vector.cpython-311.pyc deleted file mode 100644 index 09d9d21..0000000 Binary files a/leenkx/blender/lnx/logicnode/transform/__pycache__/LN_transform_to_vector.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/transform/__pycache__/LN_translate_object.cpython-311.pyc b/leenkx/blender/lnx/logicnode/transform/__pycache__/LN_translate_object.cpython-311.pyc deleted file mode 100644 index 6d72b0b..0000000 Binary files a/leenkx/blender/lnx/logicnode/transform/__pycache__/LN_translate_object.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/transform/__pycache__/LN_translate_on_local_axis.cpython-311.pyc b/leenkx/blender/lnx/logicnode/transform/__pycache__/LN_translate_on_local_axis.cpython-311.pyc deleted file mode 100644 index c4cc610..0000000 Binary files a/leenkx/blender/lnx/logicnode/transform/__pycache__/LN_translate_on_local_axis.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/transform/__pycache__/LN_vector_to_object_orientation.cpython-311.pyc b/leenkx/blender/lnx/logicnode/transform/__pycache__/LN_vector_to_object_orientation.cpython-311.pyc deleted file mode 100644 index 5e16790..0000000 Binary files a/leenkx/blender/lnx/logicnode/transform/__pycache__/LN_vector_to_object_orientation.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/transform/__pycache__/LN_world_vector_to_local_space.cpython-311.pyc b/leenkx/blender/lnx/logicnode/transform/__pycache__/LN_world_vector_to_local_space.cpython-311.pyc deleted file mode 100644 index 910ce7a..0000000 Binary files a/leenkx/blender/lnx/logicnode/transform/__pycache__/LN_world_vector_to_local_space.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/transform/__pycache__/__init__.cpython-311.pyc b/leenkx/blender/lnx/logicnode/transform/__pycache__/__init__.cpython-311.pyc deleted file mode 100644 index e2e80be..0000000 Binary files a/leenkx/blender/lnx/logicnode/transform/__pycache__/__init__.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/variable/__pycache__/LN_animation_tree.cpython-311.pyc b/leenkx/blender/lnx/logicnode/variable/__pycache__/LN_animation_tree.cpython-311.pyc deleted file mode 100644 index e0a83a5..0000000 Binary files a/leenkx/blender/lnx/logicnode/variable/__pycache__/LN_animation_tree.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/variable/__pycache__/LN_boolean.cpython-311.pyc b/leenkx/blender/lnx/logicnode/variable/__pycache__/LN_boolean.cpython-311.pyc deleted file mode 100644 index 978f1df..0000000 Binary files a/leenkx/blender/lnx/logicnode/variable/__pycache__/LN_boolean.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/variable/__pycache__/LN_color.cpython-311.pyc b/leenkx/blender/lnx/logicnode/variable/__pycache__/LN_color.cpython-311.pyc deleted file mode 100644 index 689749d..0000000 Binary files a/leenkx/blender/lnx/logicnode/variable/__pycache__/LN_color.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/variable/__pycache__/LN_dynamic.cpython-311.pyc b/leenkx/blender/lnx/logicnode/variable/__pycache__/LN_dynamic.cpython-311.pyc deleted file mode 100644 index fdada25..0000000 Binary files a/leenkx/blender/lnx/logicnode/variable/__pycache__/LN_dynamic.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/variable/__pycache__/LN_float.cpython-311.pyc b/leenkx/blender/lnx/logicnode/variable/__pycache__/LN_float.cpython-311.pyc deleted file mode 100644 index 6da85ff..0000000 Binary files a/leenkx/blender/lnx/logicnode/variable/__pycache__/LN_float.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/variable/__pycache__/LN_integer.cpython-311.pyc b/leenkx/blender/lnx/logicnode/variable/__pycache__/LN_integer.cpython-311.pyc deleted file mode 100644 index ea7209b..0000000 Binary files a/leenkx/blender/lnx/logicnode/variable/__pycache__/LN_integer.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/variable/__pycache__/LN_mask.cpython-311.pyc b/leenkx/blender/lnx/logicnode/variable/__pycache__/LN_mask.cpython-311.pyc deleted file mode 100644 index ee7600b..0000000 Binary files a/leenkx/blender/lnx/logicnode/variable/__pycache__/LN_mask.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/variable/__pycache__/LN_retain_value.cpython-311.pyc b/leenkx/blender/lnx/logicnode/variable/__pycache__/LN_retain_value.cpython-311.pyc deleted file mode 100644 index 9841ac4..0000000 Binary files a/leenkx/blender/lnx/logicnode/variable/__pycache__/LN_retain_value.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/variable/__pycache__/LN_rotation.cpython-311.pyc b/leenkx/blender/lnx/logicnode/variable/__pycache__/LN_rotation.cpython-311.pyc deleted file mode 100644 index 0cb9565..0000000 Binary files a/leenkx/blender/lnx/logicnode/variable/__pycache__/LN_rotation.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/variable/__pycache__/LN_scene.cpython-311.pyc b/leenkx/blender/lnx/logicnode/variable/__pycache__/LN_scene.cpython-311.pyc deleted file mode 100644 index bf7d2b7..0000000 Binary files a/leenkx/blender/lnx/logicnode/variable/__pycache__/LN_scene.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/variable/__pycache__/LN_set_variable.cpython-311.pyc b/leenkx/blender/lnx/logicnode/variable/__pycache__/LN_set_variable.cpython-311.pyc deleted file mode 100644 index 5a315bc..0000000 Binary files a/leenkx/blender/lnx/logicnode/variable/__pycache__/LN_set_variable.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/variable/__pycache__/LN_transform.cpython-311.pyc b/leenkx/blender/lnx/logicnode/variable/__pycache__/LN_transform.cpython-311.pyc deleted file mode 100644 index 7fc7817..0000000 Binary files a/leenkx/blender/lnx/logicnode/variable/__pycache__/LN_transform.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/variable/__pycache__/LN_vector.cpython-311.pyc b/leenkx/blender/lnx/logicnode/variable/__pycache__/LN_vector.cpython-311.pyc deleted file mode 100644 index ada45f3..0000000 Binary files a/leenkx/blender/lnx/logicnode/variable/__pycache__/LN_vector.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/variable/__pycache__/__init__.cpython-311.pyc b/leenkx/blender/lnx/logicnode/variable/__pycache__/__init__.cpython-311.pyc deleted file mode 100644 index d7de3aa..0000000 Binary files a/leenkx/blender/lnx/logicnode/variable/__pycache__/__init__.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/world/__pycache__/LN_get_hosekwilkie_properties.cpython-311.pyc b/leenkx/blender/lnx/logicnode/world/__pycache__/LN_get_hosekwilkie_properties.cpython-311.pyc deleted file mode 100644 index 6ffe0c7..0000000 Binary files a/leenkx/blender/lnx/logicnode/world/__pycache__/LN_get_hosekwilkie_properties.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/world/__pycache__/LN_get_nishita_properties.cpython-311.pyc b/leenkx/blender/lnx/logicnode/world/__pycache__/LN_get_nishita_properties.cpython-311.pyc deleted file mode 100644 index 1a7b587..0000000 Binary files a/leenkx/blender/lnx/logicnode/world/__pycache__/LN_get_nishita_properties.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/world/__pycache__/LN_get_world.cpython-311.pyc b/leenkx/blender/lnx/logicnode/world/__pycache__/LN_get_world.cpython-311.pyc deleted file mode 100644 index cd53fb9..0000000 Binary files a/leenkx/blender/lnx/logicnode/world/__pycache__/LN_get_world.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/world/__pycache__/LN_get_world_strength.cpython-311.pyc b/leenkx/blender/lnx/logicnode/world/__pycache__/LN_get_world_strength.cpython-311.pyc deleted file mode 100644 index 545e738..0000000 Binary files a/leenkx/blender/lnx/logicnode/world/__pycache__/LN_get_world_strength.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/world/__pycache__/LN_set_hosekwilkie_properties.cpython-311.pyc b/leenkx/blender/lnx/logicnode/world/__pycache__/LN_set_hosekwilkie_properties.cpython-311.pyc deleted file mode 100644 index 240ffec..0000000 Binary files a/leenkx/blender/lnx/logicnode/world/__pycache__/LN_set_hosekwilkie_properties.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/world/__pycache__/LN_set_nishita_properties.cpython-311.pyc b/leenkx/blender/lnx/logicnode/world/__pycache__/LN_set_nishita_properties.cpython-311.pyc deleted file mode 100644 index 78433f8..0000000 Binary files a/leenkx/blender/lnx/logicnode/world/__pycache__/LN_set_nishita_properties.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/world/__pycache__/LN_set_world.cpython-311.pyc b/leenkx/blender/lnx/logicnode/world/__pycache__/LN_set_world.cpython-311.pyc deleted file mode 100644 index 1c09b32..0000000 Binary files a/leenkx/blender/lnx/logicnode/world/__pycache__/LN_set_world.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/world/__pycache__/LN_set_world_strength.cpython-311.pyc b/leenkx/blender/lnx/logicnode/world/__pycache__/LN_set_world_strength.cpython-311.pyc deleted file mode 100644 index 8e7ccc7..0000000 Binary files a/leenkx/blender/lnx/logicnode/world/__pycache__/LN_set_world_strength.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/logicnode/world/__pycache__/__init__.cpython-311.pyc b/leenkx/blender/lnx/logicnode/world/__pycache__/__init__.cpython-311.pyc deleted file mode 100644 index 26ac122..0000000 Binary files a/leenkx/blender/lnx/logicnode/world/__pycache__/__init__.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/material/__pycache__/__init__.cpython-311.pyc b/leenkx/blender/lnx/material/__pycache__/__init__.cpython-311.pyc deleted file mode 100644 index eaca268..0000000 Binary files a/leenkx/blender/lnx/material/__pycache__/__init__.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/material/__pycache__/cycles.cpython-311.pyc b/leenkx/blender/lnx/material/__pycache__/cycles.cpython-311.pyc deleted file mode 100644 index 99cff3e..0000000 Binary files a/leenkx/blender/lnx/material/__pycache__/cycles.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/material/__pycache__/cycles_functions.cpython-311.pyc b/leenkx/blender/lnx/material/__pycache__/cycles_functions.cpython-311.pyc deleted file mode 100644 index 5b6f0ca..0000000 Binary files a/leenkx/blender/lnx/material/__pycache__/cycles_functions.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/material/__pycache__/make.cpython-311.pyc b/leenkx/blender/lnx/material/__pycache__/make.cpython-311.pyc deleted file mode 100644 index 229f0ea..0000000 Binary files a/leenkx/blender/lnx/material/__pycache__/make.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/material/__pycache__/make_attrib.cpython-311.pyc b/leenkx/blender/lnx/material/__pycache__/make_attrib.cpython-311.pyc deleted file mode 100644 index af4f7cf..0000000 Binary files a/leenkx/blender/lnx/material/__pycache__/make_attrib.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/material/__pycache__/make_cluster.cpython-311.pyc b/leenkx/blender/lnx/material/__pycache__/make_cluster.cpython-311.pyc deleted file mode 100644 index b444d12..0000000 Binary files a/leenkx/blender/lnx/material/__pycache__/make_cluster.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/material/__pycache__/make_decal.cpython-311.pyc b/leenkx/blender/lnx/material/__pycache__/make_decal.cpython-311.pyc deleted file mode 100644 index 6a89736..0000000 Binary files a/leenkx/blender/lnx/material/__pycache__/make_decal.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/material/__pycache__/make_depth.cpython-311.pyc b/leenkx/blender/lnx/material/__pycache__/make_depth.cpython-311.pyc deleted file mode 100644 index b63891d..0000000 Binary files a/leenkx/blender/lnx/material/__pycache__/make_depth.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/material/__pycache__/make_finalize.cpython-311.pyc b/leenkx/blender/lnx/material/__pycache__/make_finalize.cpython-311.pyc deleted file mode 100644 index 94fd685..0000000 Binary files a/leenkx/blender/lnx/material/__pycache__/make_finalize.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/material/__pycache__/make_inst.cpython-311.pyc b/leenkx/blender/lnx/material/__pycache__/make_inst.cpython-311.pyc deleted file mode 100644 index dcb8eec..0000000 Binary files a/leenkx/blender/lnx/material/__pycache__/make_inst.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/material/__pycache__/make_mesh.cpython-311.pyc b/leenkx/blender/lnx/material/__pycache__/make_mesh.cpython-311.pyc deleted file mode 100644 index b643fa3..0000000 Binary files a/leenkx/blender/lnx/material/__pycache__/make_mesh.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/material/__pycache__/make_morph_target.cpython-311.pyc b/leenkx/blender/lnx/material/__pycache__/make_morph_target.cpython-311.pyc deleted file mode 100644 index 23c5d77..0000000 Binary files a/leenkx/blender/lnx/material/__pycache__/make_morph_target.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/material/__pycache__/make_overlay.cpython-311.pyc b/leenkx/blender/lnx/material/__pycache__/make_overlay.cpython-311.pyc deleted file mode 100644 index 05184eb..0000000 Binary files a/leenkx/blender/lnx/material/__pycache__/make_overlay.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/material/__pycache__/make_particle.cpython-311.pyc b/leenkx/blender/lnx/material/__pycache__/make_particle.cpython-311.pyc deleted file mode 100644 index bc244f0..0000000 Binary files a/leenkx/blender/lnx/material/__pycache__/make_particle.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/material/__pycache__/make_refract.cpython-311.pyc b/leenkx/blender/lnx/material/__pycache__/make_refract.cpython-311.pyc deleted file mode 100644 index 7ef2fed..0000000 Binary files a/leenkx/blender/lnx/material/__pycache__/make_refract.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/material/__pycache__/make_shader.cpython-311.pyc b/leenkx/blender/lnx/material/__pycache__/make_shader.cpython-311.pyc deleted file mode 100644 index 7d68ff8..0000000 Binary files a/leenkx/blender/lnx/material/__pycache__/make_shader.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/material/__pycache__/make_skin.cpython-311.pyc b/leenkx/blender/lnx/material/__pycache__/make_skin.cpython-311.pyc deleted file mode 100644 index 27ad8bd..0000000 Binary files a/leenkx/blender/lnx/material/__pycache__/make_skin.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/material/__pycache__/make_tess.cpython-311.pyc b/leenkx/blender/lnx/material/__pycache__/make_tess.cpython-311.pyc deleted file mode 100644 index 0edcbb3..0000000 Binary files a/leenkx/blender/lnx/material/__pycache__/make_tess.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/material/__pycache__/make_transluc.cpython-311.pyc b/leenkx/blender/lnx/material/__pycache__/make_transluc.cpython-311.pyc deleted file mode 100644 index 90541d8..0000000 Binary files a/leenkx/blender/lnx/material/__pycache__/make_transluc.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/material/__pycache__/make_voxel.cpython-311.pyc b/leenkx/blender/lnx/material/__pycache__/make_voxel.cpython-311.pyc deleted file mode 100644 index 98d4a82..0000000 Binary files a/leenkx/blender/lnx/material/__pycache__/make_voxel.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/material/__pycache__/mat_batch.cpython-311.pyc b/leenkx/blender/lnx/material/__pycache__/mat_batch.cpython-311.pyc deleted file mode 100644 index 2ac6e99..0000000 Binary files a/leenkx/blender/lnx/material/__pycache__/mat_batch.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/material/__pycache__/mat_state.cpython-311.pyc b/leenkx/blender/lnx/material/__pycache__/mat_state.cpython-311.pyc deleted file mode 100644 index 3128b01..0000000 Binary files a/leenkx/blender/lnx/material/__pycache__/mat_state.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/material/__pycache__/mat_utils.cpython-311.pyc b/leenkx/blender/lnx/material/__pycache__/mat_utils.cpython-311.pyc deleted file mode 100644 index b420ff5..0000000 Binary files a/leenkx/blender/lnx/material/__pycache__/mat_utils.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/material/__pycache__/node_meta.cpython-311.pyc b/leenkx/blender/lnx/material/__pycache__/node_meta.cpython-311.pyc deleted file mode 100644 index 1c33980..0000000 Binary files a/leenkx/blender/lnx/material/__pycache__/node_meta.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/material/__pycache__/parser_state.cpython-311.pyc b/leenkx/blender/lnx/material/__pycache__/parser_state.cpython-311.pyc deleted file mode 100644 index 84d936d..0000000 Binary files a/leenkx/blender/lnx/material/__pycache__/parser_state.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/material/__pycache__/shader.cpython-311.pyc b/leenkx/blender/lnx/material/__pycache__/shader.cpython-311.pyc deleted file mode 100644 index 001b52a..0000000 Binary files a/leenkx/blender/lnx/material/__pycache__/shader.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/material/cycles_nodes/__pycache__/__init__.cpython-311.pyc b/leenkx/blender/lnx/material/cycles_nodes/__pycache__/__init__.cpython-311.pyc deleted file mode 100644 index 7782700..0000000 Binary files a/leenkx/blender/lnx/material/cycles_nodes/__pycache__/__init__.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/material/cycles_nodes/__pycache__/nodes_color.cpython-311.pyc b/leenkx/blender/lnx/material/cycles_nodes/__pycache__/nodes_color.cpython-311.pyc deleted file mode 100644 index 65aac55..0000000 Binary files a/leenkx/blender/lnx/material/cycles_nodes/__pycache__/nodes_color.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/material/cycles_nodes/__pycache__/nodes_converter.cpython-311.pyc b/leenkx/blender/lnx/material/cycles_nodes/__pycache__/nodes_converter.cpython-311.pyc deleted file mode 100644 index ed25b48..0000000 Binary files a/leenkx/blender/lnx/material/cycles_nodes/__pycache__/nodes_converter.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/material/cycles_nodes/__pycache__/nodes_input.cpython-311.pyc b/leenkx/blender/lnx/material/cycles_nodes/__pycache__/nodes_input.cpython-311.pyc deleted file mode 100644 index 92a3322..0000000 Binary files a/leenkx/blender/lnx/material/cycles_nodes/__pycache__/nodes_input.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/material/cycles_nodes/__pycache__/nodes_shader.cpython-311.pyc b/leenkx/blender/lnx/material/cycles_nodes/__pycache__/nodes_shader.cpython-311.pyc deleted file mode 100644 index 70cc9e1..0000000 Binary files a/leenkx/blender/lnx/material/cycles_nodes/__pycache__/nodes_shader.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/material/cycles_nodes/__pycache__/nodes_texture.cpython-311.pyc b/leenkx/blender/lnx/material/cycles_nodes/__pycache__/nodes_texture.cpython-311.pyc deleted file mode 100644 index efebc34..0000000 Binary files a/leenkx/blender/lnx/material/cycles_nodes/__pycache__/nodes_texture.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/material/cycles_nodes/__pycache__/nodes_vector.cpython-311.pyc b/leenkx/blender/lnx/material/cycles_nodes/__pycache__/nodes_vector.cpython-311.pyc deleted file mode 100644 index f671c95..0000000 Binary files a/leenkx/blender/lnx/material/cycles_nodes/__pycache__/nodes_vector.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/material/lnx_nodes/__pycache__/__init__.cpython-311.pyc b/leenkx/blender/lnx/material/lnx_nodes/__pycache__/__init__.cpython-311.pyc deleted file mode 100644 index 8e808a4..0000000 Binary files a/leenkx/blender/lnx/material/lnx_nodes/__pycache__/__init__.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/material/lnx_nodes/__pycache__/custom_particle_node.cpython-311.pyc b/leenkx/blender/lnx/material/lnx_nodes/__pycache__/custom_particle_node.cpython-311.pyc deleted file mode 100644 index 2ac5ef4..0000000 Binary files a/leenkx/blender/lnx/material/lnx_nodes/__pycache__/custom_particle_node.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/material/lnx_nodes/__pycache__/lnx_nodes.cpython-311.pyc b/leenkx/blender/lnx/material/lnx_nodes/__pycache__/lnx_nodes.cpython-311.pyc deleted file mode 100644 index 1f1a94e..0000000 Binary files a/leenkx/blender/lnx/material/lnx_nodes/__pycache__/lnx_nodes.cpython-311.pyc and /dev/null differ diff --git a/leenkx/blender/lnx/material/lnx_nodes/__pycache__/shader_data_node.cpython-311.pyc b/leenkx/blender/lnx/material/lnx_nodes/__pycache__/shader_data_node.cpython-311.pyc deleted file mode 100644 index b05df60..0000000 Binary files a/leenkx/blender/lnx/material/lnx_nodes/__pycache__/shader_data_node.cpython-311.pyc and /dev/null differ