diff --git a/game.wren b/game.wren index 5bf86e6..8b346f4 100644 --- a/game.wren +++ b/game.wren @@ -1,4 +1,5 @@ -import "luxe: world" for World, Entity, Transform, Sprite, Values, Tags, Camera, Scene, Body3D +import "luxe: world" for World, Entity, Transform, Sprite, Values, Tags, Camera +import "luxe: world/scene" for Scene import "luxe: draw" for Draw, PathStyle import "luxe: input" for Input, Key import "luxe: assets" for Assets @@ -12,12 +13,11 @@ import "outline/ready" for Ready class Game is Ready { - var opened_level: Bool = false - construct ready() { super("ready! %(width) x %(height) @ %(scale)x") + Camera.set3D(camera, 85, width/height, 0.01, 500) Transform.set_pos(camera, 0, 1, 4) Transform.set_euler_x(camera, -0.25) @@ -26,17 +26,8 @@ class Game is Ready { _debug_cam = EditorCamera.new(world, camera, "any") _debug_cam.speed = 1 - // Bandage fix for a bug where Jolt with crash the - // game if you load a scene with a collider when - // the world has zero mass. So here, I explicitly - // make a collider to give the world mass. - var mass_fix = Entity.create(world) - Log.print("Created mass_fix: %(Entity.get_uuid(mass_fix))") - - Scene.create(world, Asset.scene("scene/arena01")) - - // Entity.destroy(mass_fix) - + // Scene.create(world, Asset.scene("scene/arena01")) + } //ready tick(delta: Num) { @@ -45,11 +36,6 @@ class Game is Ready { IO.shutdown() } - if (Input.key_state_released(Key.key_o) && !opened_level) { - Scene.create(world, Asset.scene("scene/map_load")) - opened_level = true - } - if (_using_debug_cam) { _debug_cam.tick(delta) } diff --git a/luxe.project/asset.wren b/luxe.project/asset.wren index f7d720e..863f5cc 100644 --- a/luxe.project/asset.wren +++ b/luxe.project/asset.wren @@ -3,125 +3,18 @@ import "luxe: assets" for Assets, Strings import "luxe: blocks" for Block -import "luxe: type/anim.asset" for AnimDesc -import "luxe: type/asset.meta.asset" for AssetMeta -import "luxe: type/audio.asset" for AudioDesc -import "luxe: type/basis.asset" for Basis -import "luxe: type/audio.bus.asset" for AudioBusMeta -import "luxe: type/clip.asset" for ClipDesc -import "luxe: type/compute.asset" for Compute -import "func_luxe: type/entity_def.asset" for EntityDef -import "luxe: type/font.face.asset" for FaceDesc -import "luxe: type/font.asset" for FontDesc -import "func_luxe: type/game_config.asset" for GameConfig -import "luxe: type/mesh.asset" for MeshDesc -import "luxe: type/scene.asset" for SceneDesc -import "luxe: type/skeleton.asset" for SkeletonDesc -import "luxe: type/stage.asset" for StageDesc -import "luxe: type/text.style.asset" for TextStyle -import "luxe: type/tiles.asset" for TilesDesc -import "luxe: type/tiles.brush.asset" for TilesBrush -import "luxe: type/tiles.visual.asset" for TilesVisualDesc class AssetType { - static anim { "luxe: type/anim.asset" } - static anim_track { "luxe: type/anim.track.asset" } - static asset_meta { "luxe: type/asset.meta.asset" } - static atlas { "luxe: type/atlas.asset" } - static audio { "luxe: type/audio.asset" } - static basis { "luxe: type/basis.asset" } - static block { "luxe: type/block.asset" } - static block_def { "luxe: type/block_def.asset" } - static bus { "luxe: type/audio.bus.asset" } - static clip { "luxe: type/clip.asset" } - static compute { "luxe: type/compute.asset" } - static entity { "luxe: type/entity.asset" } - static entity_def { "func_luxe: type/entity_def.asset" } - static face { "luxe: type/font.face.asset" } - static font { "luxe: type/font.asset" } - static game_config { "func_luxe: type/game_config.asset" } - static image { "luxe: type/image.asset" } - static material { "luxe: type/material.asset" } - static mesh { "luxe: type/mesh.asset" } - static mesh_preset { "luxe: type/mesh.preset.asset" } - static modifier { "luxe: type/modifier.asset" } - static physics { "luxe: type/physics.asset" } - static pose_node { "luxe: type/pose_node.asset" } static prototype { "luxe: type/prototype.asset" } - static scene { "luxe: type/scene.asset" } - static skeleton { "luxe: type/skeleton.asset" } - static stage { "luxe: type/stage.asset" } - static task { "luxe: type/task.asset" } - static text_style { "luxe: type/text.style.asset" } - static tiles { "luxe: type/tiles.asset" } - static tiles_brush { "luxe: type/tiles.brush.asset" } - static tiles_visual { "luxe: type/tiles.visual.asset" } } class AssetGetAPI { construct new() {} - #asset_type(arg = "asset_id", subtype= "anim") - anim(asset_id: String) : AnimDesc { Asset.instance(AssetType.anim, asset_id) } - #asset_type(arg = "asset_id", subtype= "asset_meta") - asset_meta(asset_id: String) : AssetMeta { Asset.instance(AssetType.asset_meta, asset_id) } - #asset_type(arg = "asset_id", subtype= "audio") - audio(asset_id: String) : AudioDesc { Asset.instance(AssetType.audio, asset_id) } - #asset_type(arg = "asset_id", subtype= "basis") - basis(asset_id: String) : Basis { Asset.instance(AssetType.basis, asset_id) } - #asset_type(arg = "asset_id", subtype= "bus") - bus(asset_id: String) : AudioBusMeta { Asset.instance(AssetType.bus, asset_id) } - #asset_type(arg = "asset_id", subtype= "clip") - clip(asset_id: String) : ClipDesc { Asset.instance(AssetType.clip, asset_id) } - #asset_type(arg = "asset_id", subtype= "compute") - compute(asset_id: String) : Compute { Asset.instance(AssetType.compute, asset_id) } - #asset_type(arg = "asset_id", subtype= "entity_def") - entity_def(asset_id: String) : EntityDef { Asset.instance(AssetType.entity_def, asset_id) } - #asset_type(arg = "asset_id", subtype= "face") - face(asset_id: String) : FaceDesc { Asset.instance(AssetType.face, asset_id) } - #asset_type(arg = "asset_id", subtype= "font") - font(asset_id: String) : FontDesc { Asset.instance(AssetType.font, asset_id) } - #asset_type(arg = "asset_id", subtype= "game_config") - game_config(asset_id: String) : GameConfig { Asset.instance(AssetType.game_config, asset_id) } - #asset_type(arg = "asset_id", subtype= "mesh") - mesh(asset_id: String) : MeshDesc { Asset.instance(AssetType.mesh, asset_id) } - #asset_type(arg = "asset_id", subtype= "scene") - scene(asset_id: String) : SceneDesc { Asset.instance(AssetType.scene, asset_id) } - #asset_type(arg = "asset_id", subtype= "skeleton") - skeleton(asset_id: String) : SkeletonDesc { Asset.instance(AssetType.skeleton, asset_id) } - #asset_type(arg = "asset_id", subtype= "stage") - stage(asset_id: String) : StageDesc { Asset.instance(AssetType.stage, asset_id) } - #asset_type(arg = "asset_id", subtype= "text_style") - text_style(asset_id: String) : TextStyle { Asset.instance(AssetType.text_style, asset_id) } - #asset_type(arg = "asset_id", subtype= "tiles") - tiles(asset_id: String) : TilesDesc { Asset.instance(AssetType.tiles, asset_id) } - #asset_type(arg = "asset_id", subtype= "tiles_brush") - tiles_brush(asset_id: String) : TilesBrush { Asset.instance(AssetType.tiles_brush, asset_id) } - #asset_type(arg = "asset_id", subtype= "tiles_visual") - tiles_visual(asset_id: String) : TilesVisualDesc { Asset.instance(AssetType.tiles_visual, asset_id) } } var AssetGet = AssetGetAPI.new() class AssetAddAPI { construct new() {} - anim(asset_id: String) : AnimDesc { Asset.add(AssetType.anim, asset_id) } - asset_meta(asset_id: String) : AssetMeta { Asset.add(AssetType.asset_meta, asset_id) } - audio(asset_id: String) : AudioDesc { Asset.add(AssetType.audio, asset_id) } - basis(asset_id: String) : Basis { Asset.add(AssetType.basis, asset_id) } - bus(asset_id: String) : AudioBusMeta { Asset.add(AssetType.bus, asset_id) } - clip(asset_id: String) : ClipDesc { Asset.add(AssetType.clip, asset_id) } - compute(asset_id: String) : Compute { Asset.add(AssetType.compute, asset_id) } - entity_def(asset_id: String) : EntityDef { Asset.add(AssetType.entity_def, asset_id) } - face(asset_id: String) : FaceDesc { Asset.add(AssetType.face, asset_id) } - font(asset_id: String) : FontDesc { Asset.add(AssetType.font, asset_id) } - game_config(asset_id: String) : GameConfig { Asset.add(AssetType.game_config, asset_id) } - mesh(asset_id: String) : MeshDesc { Asset.add(AssetType.mesh, asset_id) } - scene(asset_id: String) : SceneDesc { Asset.add(AssetType.scene, asset_id) } - skeleton(asset_id: String) : SkeletonDesc { Asset.add(AssetType.skeleton, asset_id) } - stage(asset_id: String) : StageDesc { Asset.add(AssetType.stage, asset_id) } - text_style(asset_id: String) : TextStyle { Asset.add(AssetType.text_style, asset_id) } - tiles(asset_id: String) : TilesDesc { Asset.add(AssetType.tiles, asset_id) } - tiles_brush(asset_id: String) : TilesBrush { Asset.add(AssetType.tiles_brush, asset_id) } - tiles_visual(asset_id: String) : TilesVisualDesc { Asset.add(AssetType.tiles_visual, asset_id) } } var AssetAdd = AssetAddAPI.new() @@ -142,38 +35,6 @@ class Asset { } static get : AssetGetAPI { AssetGet } static add : AssetAddAPI { AssetAdd } - #asset_type(arg = "asset_id", subtype= "anim") - static anim(asset_id: String) : Num { Assets.get_handle(AssetType.anim, asset_id) } - #asset_type(arg = "asset_id", subtype= "atlas") - static atlas(asset_id: String) : Num { Assets.get_handle(AssetType.atlas, asset_id) } - #asset_type(arg = "asset_id", subtype= "audio") - static audio(asset_id: String) : Num { Assets.get_handle(AssetType.audio, asset_id) } - #asset_type(arg = "asset_id", subtype= "bus") - static bus(asset_id: String) : Num { Assets.get_handle(AssetType.bus, asset_id) } - #asset_type(arg = "asset_id", subtype= "clip") - static clip(asset_id: String) : Num { Assets.get_handle(AssetType.clip, asset_id) } - #asset_type(arg = "asset_id", subtype= "compute") - static compute(asset_id: String) : Num { Assets.get_handle(AssetType.compute, asset_id) } - #asset_type(arg = "asset_id", subtype= "face") - static face(asset_id: String) : Num { Assets.get_handle(AssetType.face, asset_id) } - #asset_type(arg = "asset_id", subtype= "font") - static font(asset_id: String) : Num { Assets.get_handle(AssetType.font, asset_id) } #asset_type(arg = "asset_id", subtype= "prototype") static prototype(asset_id: String) : Num { Assets.get_handle(AssetType.prototype, asset_id) } - #asset_type(arg = "asset_id", subtype= "scene") - static scene(asset_id: String) : Num { Assets.get_handle(AssetType.scene, asset_id) } - #asset_type(arg = "asset_id", subtype= "skeleton") - static skeleton(asset_id: String) : Num { Assets.get_handle(AssetType.skeleton, asset_id) } - #asset_type(arg = "asset_id", subtype= "stage") - static stage(asset_id: String) : Num { Assets.get_handle(AssetType.stage, asset_id) } - #asset_type(arg = "asset_id", subtype= "task") - static task(asset_id: String) : Num { Assets.get_handle(AssetType.task, asset_id) } - #asset_type(arg = "asset_id", subtype= "text_style") - static text_style(asset_id: String) : Num { Assets.get_handle(AssetType.text_style, asset_id) } - #asset_type(arg = "asset_id", subtype= "tiles") - static tiles(asset_id: String) : Num { Assets.get_handle(AssetType.tiles, asset_id) } - #asset_type(arg = "asset_id", subtype= "tiles_brush") - static tiles_brush(asset_id: String) : Num { Assets.get_handle(AssetType.tiles_brush, asset_id) } - #asset_type(arg = "asset_id", subtype= "tiles_visual") - static tiles_visual(asset_id: String) : Num { Assets.get_handle(AssetType.tiles_visual, asset_id) } } diff --git a/luxe.project/assets.lx b/luxe.project/assets.lx index 8cf2b9b..04d438d 100644 --- a/luxe.project/assets.lx +++ b/luxe.project/assets.lx @@ -8,18 +8,25 @@ { "02e3e5a9-5b48-4567-b78d-5dfd2b467202" = "textures/env_lo/tex_metal_red_01.png" } { "033dde8b-03a7-47ed-aa55-de60d60688f6" = "luxe: asset/import/" } { "03535b28-2f12-484d-b8fc-7269150e1f91" = "textures/env_lo/tex_wood_grain_01.tres" } + { "035ba4b7-e58e-4d49-b1f3-7d8c31dc272c" = "prototype/" } { "037d00e2-eef4-4a49-b259-2f5f62b767be" = "luxe: material_basis/line.material_basis.lx" } + { "03bb00c1-c021-43f5-b332-f4e7ffce21ad" = "maps/arena01_0_worldspawn.obj" } { "03f432ec-f0c1-4bfe-b2ae-00ca3729eaa9" = "luxe: image/folder-open.svg" } + { "0408f2c3-2cf3-42a8-9a5b-3e9b211713d2" = "maps/arena01_0_worldspawn.obj.assets/env_lo/tex_tile_tan_01.material.lx" } { "04b8ffa3-250c-4b2d-8bea-d0e8205bbc7f" = "luxe: ui/editor.panel.modifier.values.part.ui.lx" } { "04fcd91d-fb32-4ec5-8f98-5579aee81766" = "luxe: type/mesh.gltf.asset.wren" } + { "0504d3bf-dd58-42ca-8ae1-69eab8f0c425" = "maps/arena01_0_worldspawn.obj.assets/env_lo/tex_tile_tan_01.material.lx" } { "050526f1-c8b3-4a16-a7a7-1a79e28fedc6" = "textures/env_lo/tex_glass_02.png" } + { "056516dc-fe71-417e-962b-1d032888d9fe" = "prototype/" } { "0579fdb3-98d9-4bd0-979d-6bfb535c7cf9" = "textures/env_lo/tex_brick_01.tres" } { "059537f0-2f76-4d90-8ad7-d729b44fd258" = "luxe: ui/" } { "05c3eeac-12bf-436a-ba37-e828cf78851d" = "luxe: asset/import/sprite.import.wren" } { "05cfe187-776c-4deb-9e2e-28e39afaf6ec" = "textures/env_lo/tex_road_side_01.png.import" } + { "064dc135-7a21-4b8e-8178-40efefb19802" = "prototype/arena01.prototype/arena01.prototype.lx" } { "06990a88-1087-46f3-b299-fcfed1e36fac" = "func_luxe: texture_default/" } { "069dff70-b52a-40c0-985c-86cff46afe63" = "luxe: system/physics/capsule_collider3D.modifier.wren" } { "07048dcb-47e3-4deb-b796-ea837802c744" = "luxe: type/image.tga.asset.wren" } + { "072d89a5-244b-4237-91fa-bc63ade00855" = "maps/arena01_0_worldspawn.obj.assets/env_lo/tex_brick_01.material.lx" } { "07a0739b-2daa-4a32-9285-8b94ec301776" = "textures/env_lo/tex_road_stairs_01.png" } { "07a0abff-3e69-4316-b148-8584d67e0ea5" = "textures/env_lo/tex_brick_06.tres" } { "07ae95c4-5b6f-4acc-87b7-b53c9524bd7a" = "textures/env_lo/tex_fence_chain_01.png.import" } @@ -27,57 +34,87 @@ { "07f3f923-bd72-4e65-b507-4260d8017f02" = "luxe: world/modifier.wren" } { "08528104-f58c-402e-a3f6-9b09d3f3f6e8" = "textures/env_lo/tex_metal_midgray_slats.tres" } { "085d13ee-73c2-40bf-9325-4bdab3e1083b" = "textures/env_lo/tex_metal_midgray_slats.image.lx" } + { "08dce4d7-ce7e-4b20-9e0b-e37efc559106" = "scene/arena01.scene/" } { "08f4674f-3fdb-4492-95ad-3156c03235c4" = "luxe: build/" } + { "09694e0f-65fb-4e74-a989-002be5f9e43b" = "prototype/arena01.prototype/" } { "098e5847-bd2a-448f-bffb-d1d54fc3d512" = "textures/env_lo/tex_tile_03.image.lx" } + { "0991a405-52ad-4431-afc6-ce9f6e6d733d" = "maps/arena_01_0_worldspawn.obj.assets/env_lo/tex_brick_01.material.lx" } + { "09928909-d3ab-4184-93fd-66aff6059321" = "maps/arena01_0_worldspawn.obj.assets/env_lo/tex_road_side_01.material.lx" } { "09a2385b-82e1-4d2a-ad3c-7367cea5a3c6" = "luxe: asset/import/image.import.ui.lx" } + { "09ac79be-0fce-4ff9-b29e-1e4ff76428ed" = "prototype/arena_01.prototype/arena_01_0_worldspawn.entity.lx" } { "0ab0e0ed-ed1e-44c8-9f89-8ed95ffb9310" = "luxe: build/wrenalyzer/" } { "0ace93b7-0a85-4e6f-847e-3e7b8d4bba3a" = "textures/env_lo/tex_billboard_02.png" } + { "0aecf712-62d7-422e-bf33-c0913c08ae47" = "maps/arena01_0_worldspawn.obj.assets/env_lo/tex_carpet_green.material.lx" } { "0b1d217b-03b7-46ff-9d01-5c2980e64b05" = "luxe: build/inputs.wren" } { "0b282a57-d2cb-4415-8628-149a4af40a55" = "luxe: type/audio.bus.asset.wren" } { "0b2ef5f2-50a9-461e-8aa5-41be5fdee1e7" = "textures/env_lo/tex_tile_06.image.lx" } + { "0b4600d9-bb28-41c8-b8d6-f3eb42acb716" = "maps/arena_01_0_worldspawn.obj.assets/env_lo/tex_tile_tan_01.material.lx" } { "0b56e6d0-a5d3-4559-bd61-288eb25b12be" = "luxe: material_basis/ui_font.material_basis.lx" } + { "0b9ca82e-d911-47ae-8b51-507486432169" = "prototype/arena01.prototype/arena01_0_worldspawn.entity.lx" } + { "0b9e22f1-f131-4a43-bd7b-85bad49f383b" = "maps/arena01_0_worldspawn.obj.assets/env_lo/tex_road_side_01.material.lx" } { "0c3ccaef-977d-40b3-9dd2-7a4cd7e995b1" = "outline/settings.settings.lx" } { "0cace1c8-75fd-4010-911f-f599db9f5c98" = "luxe: string/" } + { "0d3ba695-8812-4d83-b63a-00e9d8904718" = "prototype/arena01.prototype/prototype/arena01.instance/" } { "0d54244a-34fd-4580-b545-c99abbd75a35" = "textures/env_lo/tex_metal_09.image.lx" } { "0d7c7bd5-8fbb-45d9-b377-f8dfbf32f159" = "luxe: image/modifier/skeleton.svg" } { "0d9ad076-2699-4199-b0eb-274a4430574a" = "textures/env_lo/tex_road_cross_01.png.import" } { "0e6d4e2f-8fe7-4106-90d9-172640e4831a" = "luxe: assert.wren" } { "0e7b1766-5827-4746-a626-2083fa53632c" = "textures/special/clip.png" } { "0ecb040e-48fd-462b-b269-216e18811848" = "func_luxe: core/fgd.wren" } + { "0ef19f09-409d-47c1-ba58-232682706fb8" = "maps/arena_01_0_worldspawn.obj.assets/env_lo/tex_carpet_green.material.lx" } { "0ef1c6f1-36c7-40e4-829a-12ce04a6de2e" = "luxe: image/close.png" } + { "0f9d1148-641e-46ab-af4c-1cb661aecda3" = "maps/arena_01_0_worldspawn_col.obj" } { "0fad2b76-ff2a-4b65-9e4b-f5a4a4eafa64" = "textures/env_lo/tex_brick_03.png" } { "0fcf2a07-b22b-46bf-937c-20fb661c22d8" = "luxe: system/" } + { "1079ef7c-0f11-4f00-8b0d-dc6eee2de6fe" = "maps/arena01_0_worldspawn.obj.assets/special/" } { "10b537b1-e72e-4cd8-b0a5-722029e24e9c" = "luxe: type/audio.flac.asset.wren" } { "10d7ce4e-860c-4b91-a988-bb745e9e117d" = "func_luxe: basis/mesh.textured.material_basis.lx" } - { "11384817-89a7-40c4-a114-3eb9f97cb50f" = "maps/arena_01_0_worldspawn.obj.assets/env_lo/" } + { "125138ff-5258-4fde-b480-a9a490c7c2ed" = "prototype/arena01.prototype/" } { "12b33dbe-9723-4ab1-8a03-6374faddde4c" = "textures/env_lo/tex_wood_slats_01.tres" } { "12ea7b67-090d-4e66-a81f-a2a7b1e0e628" = "scene/" } + { "12f6ef33-00ab-452c-8717-4c5e86a00c45" = "maps/arena_01_0_worldspawn.obj.assets/env_lo/tex_road_side_01.material.lx" } + { "1304c5e2-9917-4a8c-80d5-eaa503bc2c44" = "maps/arena01_0_worldspawn.obj.assets/" } { "13939be7-246b-47ac-96f8-69f356e0f0fe" = "luxe: project/paths.wren" } + { "139c48f7-58ae-4f54-b3ca-2a71e494b6ca" = "maps/arena01_0_worldspawn.obj.assets/env_lo/" } { "1443acbb-bcc5-4110-9a57-fed5dba8b401" = "textures/env_lo/tex_tile_tan_01.png.import" } { "1549cd53-c3ff-49ca-bef9-39d4d9b11f17" = "luxe: system/vfx.modifier.wren" } + { "15dc5a3e-ef69-4fbf-9cbd-6c316a6cc198" = "prototype/arena01.prototype/arena01.prototype.lx" } { "16161d92-454e-4c33-a373-d48bb7098f63" = "luxe: modifier/tiles.wren" } { "16210f60-0869-4d7d-a68f-5c26bfb6be6f" = "luxe: type/entity.asset.wren" } + { "16947912-5b48-43fe-828e-e9c20cc1320b" = "maps/arena01_0_worldspawn.obj.assets/" } { "169977e9-2689-4291-9eea-086dbc5e06e1" = "luxe: ui/field/number.wren" } + { "16a3f852-b3e8-4f75-8ec6-314dccb444e3" = "maps/arena01_0_worldspawn.obj.assets/env_lo/tex_road_side_01.material.lx" } { "16be1a03-70ca-4ca3-ac44-6b43063f126e" = "outline/ready.wren" } + { "173f4f48-10ac-4857-ab88-880decd1b2b8" = "maps/arena_01_0_worldspawn.obj.assets/env_lo/tex_brick_01.material.lx" } { "175ee1c0-c121-432d-a6ee-f2d6e3179c66" = "textures/env_lo/tex_wood_grain_01.png~" } + { "17fc485c-3c29-46b4-8bc2-0184f56188bb" = "maps/arena01_0_worldspawn.obj.assets/env_lo/tex_brick_01.material.lx" } + { "1865df2f-52cb-4c5b-9fd1-3ad95550440a" = "maps/arena01_0_worldspawn.obj.assets/env_lo/tex_road_side_01.material.lx" } { "18a72b44-f65f-465b-a391-5dfa98f3e47c" = "camera: topdown.wren" } + { "1913556e-67bb-4e7f-8086-d47e3a008b8c" = "prototype/arena01.prototype/" } + { "192b3edb-295f-45f9-8874-4e04a832dafa" = "prototype/testing.prototype/testing_1_func_detail.entity.lx" } { "192dac08-ebe6-45c6-bedb-c302a1f8f63b" = "textures/env_lo/tex_brick_01.image.lx" } { "193a15e6-5a1b-4bee-b92e-7193d2b6b919" = "luxe: material_basis/color_pick_triangle.material_basis.lx" } { "1a2500b2-4c88-4839-8931-4268836e6df6" = "luxe: type/mesh.obj.asset.wren" } + { "1a36fb9c-235a-4311-b804-0259a3e56d7d" = "maps/arena01_0_worldspawn.obj.assets/special/" } + { "1b1bb1fd-c3e7-45a9-8d70-52ad5a1d80f7" = "prototype/arena_01.prototype/" } { "1b1f937e-3b9b-4501-a398-bee1b7c774ef" = "textures/env_lo/tex_tile_green_01.png.import" } + { "1b5b05d5-f2c3-4117-a1a9-cec6c81aaa3d" = "prototype/arena01.prototype/" } { "1b5c1216-b784-4477-965e-9a400deb9803" = "textures/env_lo/tex_fence_chain_01.tres" } { "1b68d397-47de-44cf-be11-693baf77a346" = "textures/env_lo/tex_brick_09.image.lx" } { "1b9ce51b-a7ed-45c2-9133-c38dcac1f71b" = "textures/env_lo/tex_road_plain_01.png.import" } { "1bfb173f-d0e5-4856-93ab-431fc4f77949" = "func_luxe: presets/" } - { "1c1123e8-7812-43f0-aecd-12dd75761b66" = "prototype/arena_01.prototype/" } + { "1c82e3a0-05ad-4be5-bf36-0531b798eaa3" = "prototype/arena01.prototype/arena01.prototype.lx" } { "1ca8973c-934b-4a50-b64b-e8adf786ccbe" = "luxe: pqueue.wren" } + { "1ccbb3bb-ad4b-489b-b0c6-78fd358f366c" = "prototype/arena01.prototype/arena01_0_worldspawn.entity.lx" } { "1d3d37b4-b24b-4b2a-9578-d7fbe729de7b" = "luxe: ui/list_filtered.wren" } { "1d4830f2-ab38-4220-a234-39e561bd92c1" = "camera: vec.wren" } { "1e3eba5c-3839-4780-b840-816ccb0db06b" = "luxe: image/visible.image.lx" } { "1e9cf25d-31a5-4d42-8db2-780227d26872" = "luxe: project/outline.wren" } { "1eb4640d-c7a0-4594-a7b6-8e5973eca250" = "luxe: image/paste.svg" } + { "1eb50cb4-f44a-49d0-84da-c7d97cc95c12" = "prototype/arena01.prototype/arena01.prototype.lx" } { "1efc86ed-d7dc-4bc6-9c80-2c85f0399c24" = "luxe: settings.wren" } { "1efcc219-e39a-4590-a858-9c24c2ecdc16" = "textures/env_lo/tex_metal_lightgray_01.image.lx" } + { "1f08da48-f946-46ac-ad1c-5e7f27ae9f8e" = "maps/arena_01_0_worldspawn.obj.assets/env_lo/tex_tile_tan_01.material.lx" } { "1f2d4d0e-7c74-4a29-8669-111c62530b2a" = "luxe: type/anim/modifier.anim_track.wren" } { "1f7d9e1c-707f-4c77-8e85-adffa96b8679" = "luxe: string.wren" } { "1f7ebea0-8065-4be2-b680-98b104060ca1" = "luxe: system/wires.modifier.wren" } @@ -85,15 +122,18 @@ { "1fb96886-0e3d-4f73-b912-e527a6853293" = "luxe: debug/alloc.block.wren" } { "1fc6b7cb-3473-43b6-bac0-3b98e68afb0a" = "luxe: modules/" } { "200c9612-3982-441a-8100-a54e6896144b" = "textures/env_lo/tex_wood_grain_02.png.import" } + { "200e2035-6e91-4bc5-8a54-a59b1fb6a670" = "maps/arena01_0_worldspawn.obj.assets/special/clip.material.lx" } { "20102330-f3c6-4916-9e83-1e901da9316c" = "func_luxe: texture_default/grid.wall.png" } { "20739792-549d-4866-b732-8ea76049f939" = "luxe: video.wren" } { "20942607-3b49-45e0-8844-13cae63564ef" = "camera: editor.wren" } { "213f02c0-44bf-45bb-a9eb-7531415a395f" = "luxe: ui/image.wren" } + { "21722fa5-df24-4a08-bf5b-df3bbd1ffccf" = "maps/arena01_0_worldspawn.obj.assets/" } { "21b10c94-126c-4712-8f2c-f05b3f215039" = "luxe: color.wren" } { "21eb0361-ab5b-4ab2-b0bb-2f7a47cf444e" = "luxe: image/proto-closed.svg" } { "22028d63-a826-4cad-9c1a-782a33bee70a" = "luxe: system/sound.modifier.api.wren" } { "2204ce86-f5dc-4cb8-a58d-75b9c1880bd4" = "luxe: editor.wren" } { "2209ecd4-565d-43f3-8539-42b5d29e53b3" = "luxe: type/image.asset.wren" } + { "221b3299-8a3f-4ac2-867d-5dd8d4f58046" = "maps/arena_01_0_worldspawn.obj.assets/special/" } { "221efed0-44e5-47ee-9993-673ae489db11" = "luxe: material_basis/wire.material_basis.lx" } { "22420ca4-8d7e-4eb4-9f28-0eb83923e3fa" = "luxe: asset/import/font.import.lx" } { "22462cd5-99f7-48a7-a193-3606d4238ac6" = "luxe: ui/editor.mini.anim.sprite.frame.ui.lx" } @@ -110,22 +150,29 @@ { "26bb5c97-b00b-4403-9227-acf8fab022ce" = "luxe: ui/slider.wren" } { "26ce032b-177a-49ef-b18c-71ed60d1ab34" = "luxe: build/wrenalyzer/core.wren" } { "26e19c9b-1995-4c9a-8cf6-f287139b2b6e" = "luxe: ui/editor.panel.outline.prototype.ui.lx" } + { "26fc2cf2-1448-4aee-a34b-5f0ea4dafbe2" = "prototype/" } + { "27069892-7d83-4d48-8159-960a8083e4ab" = "prototype/testing.prototype/testing_0_worldspawn.entity.lx" } { "274573a7-9186-44c8-b543-918716579cd3" = "luxe: material/logo.material.lx" } - { "2799380d-2b8a-445f-8697-5ff40748f36c" = "prototype/arena_01.prototype/prototype/arena_01.instance/instance.entity.lx" } + { "2785add2-f4c0-45ad-a1fc-a079ae0241b3" = "maps/arena01_0_worldspawn.obj.assets/env_lo/tex_brick_01.material.lx" } { "28402b5c-7f4d-46b6-accf-2bdb875ad007" = "luxe: image/modifier/tiles.svg" } { "28852da5-85d1-40c1-94bb-522d80eeb209" = "textures/env_lo/tex_wood_flooring_02.image.lx" } + { "28ae7b4e-ea68-4ac3-98c6-3a0bab09290f" = "prototype/TestPickup.prototype/TestPickup.prototype.lx" } + { "28bdd6d6-5832-4631-921b-81677c3e836d" = "maps/arena01_0_worldspawn.obj.assets/" } { "28d06ec0-4022-4a33-aa8b-6c7c2453276b" = "luxe: system/anim.modifier.wren" } { "2906a18a-1caf-4424-947a-fca13e0998ac" = "textures/env_lo/bowl.png.import" } { "2922a5a5-d84e-4326-b51c-44b683401133" = "luxe: font/Lato-Italic.ttf" } { "294f02dd-7520-4b16-8e81-923701ce4fc5" = "luxe: modifier/values.wren" } + { "296c7253-8faf-4d02-b36b-0cf20dbfa038" = "maps/arena01_0_worldspawn.obj" } { "2a50ebd5-59e5-4c75-babe-29b65047b9b1" = "textures/env_lo/tex_glass_02.image.lx" } - { "2ab8ff46-3921-47b8-8fe1-0af7a598428d" = "maps/arena_01_0_worldspawn.obj.assets/env_lo/tex_brick_01.material.lx" } + { "2a76d15b-58a0-4492-8133-e448965f65c7" = "scene/arena01.scene/instance-3aV.instance/arena01_0_worldspawn.override.lx" } { "2abd5c44-9389-42c8-bd13-a5afe749261b" = "luxe: type/compute.asset.wren" } { "2b15b234-1252-460a-b76e-c1670fb93e78" = "luxe: game.wren" } { "2b58795c-8383-4062-af02-8367ed6e9135" = "luxe: build/settings.wren" } + { "2b6d9e17-94ce-4290-a17d-1264038dcfbf" = "maps/arena01_0_worldspawn.obj.assets/special/clip.material.lx" } + { "2b9a0ad5-af90-426e-8c8b-756a6e559af7" = "maps/arena01_0_worldspawn.obj.assets/env_lo/tex_carpet_green.material.lx" } { "2bfb4267-f79b-4186-972f-7812aec92438" = "textures/env_lo/tex_metal_midgray_01.png.import" } { "2c0aef46-bb8d-4c7d-9ba8-20ac4ba6ee67" = "textures/env_lo/tex_stucco_01.png" } - { "2c205944-5ea2-4cbf-8525-84fcd1a86ae6" = "maps/arena_01_0_worldspawn.obj.assets/" } + { "2c4a267e-7bf7-4afb-875e-539c4468f5cc" = "prototype/arena01.prototype/arena01.prototype.lx" } { "2cb2dbae-bc81-4f83-bda6-ba7b9f858600" = "luxe: image/empty.sprite.lx" } { "2ccca2cb-ffa2-486f-9e86-791b82b6e115" = "luxe: pose/" } { "2d1ceeeb-511c-44a3-9eec-1843ad06ae3d" = "luxe: system/mesh.modifier.wren" } @@ -133,47 +180,67 @@ { "2d8249ed-69df-4d22-91e1-135b066258ec" = "luxe: ui/editor.mini.anim.sprite.settings.ui.lx" } { "2de79151-30fe-475a-a1d0-77e0d6032e38" = "luxe: asset/" } { "2e1c2854-4847-4c4b-93eb-e5442bbe7d59" = "luxe: type/image.hdr.asset.wren" } + { "2e3c5938-0393-4e43-9d2b-3f81fb55c101" = "prototype/arena01.prototype/" } + { "2e70a996-8f60-4bff-b318-8eef11ea51a6" = "maps/arena01_0_worldspawn.obj.assets/env_lo/tex_tile_tan_01.material.lx" } + { "2e8e6228-b707-4e82-9670-08f4e486e4f1" = "maps/arena01_0_worldspawn.mesh.lx" } { "2f2dd91a-e918-4edd-b689-10ad9746ff29" = "luxe: build/scripts.wren" } + { "2f5a46e4-bd72-45d5-9c4a-5caba0117cde" = "maps/arena_01_0_worldspawn.obj.assets/env_lo/tex_concrete_01.material.lx" } { "2f9d205c-a1c4-4db9-833c-02912db9103e" = "quench_tree.fgd.lx" } { "2fa460df-72df-49fc-88ce-de87923abce5" = "luxe: ui/editor.panel.check.ui.lx" } { "3007de3e-d700-458a-b5a7-c83f64d14e4f" = "textures/env_lo/tex_concrete_01.png.import" } { "302f7e30-dc12-4706-8afa-a32f1fd7d51b" = "textures/env_lo/tex_metal_midgray_slats.png" } { "30534dfb-d859-4d1a-ad0a-ef6b5b392f1d" = "luxe: material/mesh.line.material.lx" } - { "30b629b2-85b2-4dff-9d41-7bddf20dcd9b" = "prototype/arena_01.prototype/prototype/arena_01.instance/" } { "30db1175-af0d-4cc9-9772-cac4740cc991" = "textures/env_lo/tex_metal_lightgray_02.tres" } { "310e2913-4bca-4654-b6b1-5a943209971b" = "luxe: material_basis/mesh_debug.material_basis.lx" } - { "3164be81-52fc-441c-8daf-dfa0f47b8dd1" = "prototype/arena_01.prototype/" } + { "3125b706-442a-4f55-b12e-8266f1364646" = "prototype/arena01.prototype/arena01.prototype.lx" } + { "31e67e14-8082-49bd-9ad8-e37556c7f396" = "prototype/arena01.prototype/prototype/arena01.instance/instance.entity.lx" } { "32424b5c-49ca-49de-8aa0-09ab6d0ed68f" = "textures/env_lo/tex_painted_black.png.import" } + { "325cfa04-c680-4193-8ec1-08cf8fc23c72" = "prototype/arena01.prototype/arena01.prototype.lx" } { "32aa09e5-e394-4046-b9b5-cd6b12ccbc81" = "textures/special/" } + { "32cc253e-01fc-4e83-94c9-41cabd77ddc9" = "maps/arena_01_0_worldspawn.obj.assets/special/" } + { "32cf1eae-fe3d-41c9-b256-0e5248b76ae5" = "prototype/TestPickup.prototype/" } + { "3327b7d0-c0c2-4364-9c33-785e97b531c6" = "maps/arena01_0_worldspawn.obj.assets/special/" } { "3351d22e-a09a-4a7b-8a7b-606a9d7c248c" = "luxe: type/pose_node.asset.wren" } { "338028b2-b48c-4759-9c22-7c58b9e3b27a" = "textures/env_lo/tex_roadside_02.png.import" } { "33b180d0-3034-4efa-ae7e-43d7086e0c81" = "textures/env_lo/tex_linoleum_01.image.lx" } + { "3467a877-0b92-47c0-bd6e-1254e5259fa8" = "maps/arena01_0_worldspawn.obj.assets/env_lo/tex_tile_tan_01.material.lx" } { "34ec2465-94bb-487b-a860-dc532c060d27" = "textures/env_lo/tex_brick_08.image.lx" } + { "3514a586-41db-4533-9bb6-d5c75d622bb1" = "maps/arena01_0_worldspawn.mesh.lx" } { "354d9a12-436f-4e4e-ae41-b0158ad1f6fa" = "luxe: asset/import/material.import.ui.lx" } + { "3565d462-a90e-4ece-b733-520c4598b2a4" = "scene/scene-FAv.scene/" } { "357deeab-985b-4993-b94c-e74bc1baedbe" = "luxe: events.wren" } { "358ef539-f676-4efa-a940-648fd5c819bf" = "textures/env_lo/tex_wood_04.png.import" } { "3607e639-140b-4526-a490-fec3ba5b0f79" = "luxe: build/deploy/deploy.windows.wren" } - { "36294828-23c7-4449-9552-a61b636b611a" = "maps/arena_01_0_worldspawn.obj.assets/env_lo/tex_tile_tan_01.material.lx" } + { "36100296-06a0-4e97-a0f6-0e23c856a735" = "prototype/arena01.prototype/arena01_0_worldspawn.entity.lx" } { "364c9d7c-5b9f-4641-8b4b-402bc4fb17fa" = "textures/env_lo/tex_carpet_green.tres" } + { "3694f18b-137c-4de3-9ebb-dff8204350cf" = "maps/arena01.mtl" } { "3698d0c0-28c9-4090-9a8d-bdaf470353da" = "textures/env_lo/tex_road_plain_02.tres" } { "36b7af98-1ed5-44de-bd58-d328834923f9" = "textures/env_lo/tex_painted_eggshell.image.lx" } + { "36c8b4ae-8a4f-431b-9dc9-65b5650d0948" = "prototype/arena01.prototype/arena01_0_worldspawn.entity.lx" } { "36e0aee8-7a4a-475f-a984-1d8b4b0f5eb2" = "luxe: build/empty.wren" } { "3708ef2a-0469-42c8-9bcd-b3290fa42199" = "luxe: test.wren" } { "37135904-49ba-4884-8371-27ae43be1504" = "textures/env_lo/tex_metal_15.png.import" } { "3741d639-5a93-4ea0-bcda-0c0e41c5039f" = "luxe: physics/default.collider.physics.lx" } + { "377d1b3f-1d6a-4610-8346-e9b60685315e" = "prototype/arena01.prototype/arena01_0_worldspawn.entity.lx" } { "3868adaf-0255-4adc-bb96-25c4259402fe" = "luxe: type/anim.track.asset.wren" } + { "3877c930-c64a-4d33-8c9a-7c83fe97c0b8" = "maps/arena01_0_worldspawn.obj.assets/env_lo/tex_concrete_01.material.lx" } { "3891ad19-8c25-49fe-8abb-56aec79db6db" = "textures/env_lo/tex_concrete_01.image.lx" } { "38b045eb-6a8d-4972-a39e-9fe90e0f5853" = "luxe: build/ast/" } { "3a358a11-5d7c-4deb-9502-022878e17e6c" = "textures/env_lo/tex_stucco_01.tres" } + { "3a51f054-09ab-4ed9-b7c8-0225438fd446" = "prototype/arena01.prototype/arena01_0_worldspawn.entity.lx" } + { "3aafbc99-82c4-48cd-98d9-7e14862cc406" = "maps/arena01_0_worldspawn_col.obj" } + { "3af80145-dbb2-4bc1-8ede-3e49a305faa9" = "maps/arena01_0_worldspawn.obj.assets/env_lo/tex_road_side_01.material.lx" } { "3b33675c-609a-403b-b612-66bbf2111f6b" = "luxe: ui.wren" } { "3b488932-3466-41f6-8d5e-c981f0454eca" = "textures/env_lo/tex_roadside_03.png" } { "3b582b2e-3165-4282-bf54-817e9413bb77" = "luxe: asset/import/input.import.lx" } { "3bc41225-9f29-41da-86ea-9aa4cad85f78" = "luxe: blocks.wren" } + { "3c014391-e1d4-4110-b42f-83671e327b52" = "prototype/arena01.prototype/" } { "3c101d38-2c45-4f32-bf1c-d2d57bd6f095" = "textures/env_lo/tex_brick_06.png" } { "3c464e0c-aa2b-40c9-8292-6d59bb8656b9" = "luxe: ui/editor.panel.text.ui.lx" } { "3c50e481-a975-43f2-912c-78c0f56736be" = "luxe: build/wrenalyzer/lexer.wren" } + { "3c5485ae-b9b5-400c-8367-2a238c8e9de8" = "maps/arena01_0_worldspawn.obj.assets/env_lo/tex_tile_tan_01.material.lx" } { "3c63f87a-a320-4e22-9456-f23602b4340c" = "textures/env_lo/tex_road_side_01.image.lx" } - { "3c7699d0-8063-4cbc-a9ef-d43a0006d3a2" = "maps/arena_01_0_worldspawn.obj.assets/env_lo/" } + { "3cf2a566-64f5-49ad-849c-ea0878a45e91" = "maps/arena01_0_worldspawn.obj.assets/special/" } { "3d36ae3b-5e2f-490b-8e22-90bb06feef42" = "luxe: lx.wren" } { "3e3644fe-9cd2-425a-a5f4-ba049ad51635" = "textures/env_lo/tex_marble_01.png.import" } { "3e6b6abb-ad09-4c19-8c98-5bfae9698f4f" = "textures/env_lo/tex_brick_03.png.import" } @@ -183,10 +250,12 @@ { "4012141d-01d9-4ec5-9072-f8506d584de9" = "luxe: system/skin.modifier.wren" } { "4059e97a-2e0f-4d7c-9358-ecb4760b7f7c" = "luxe: physics/" } { "4102fb74-be01-47ce-a847-c0481818f649" = "textures/env_lo/tex_tile_green_01.image.lx" } + { "41737fd1-bc2e-4d1b-a26d-9e9d8bdd58c3" = "prototype/arena01.prototype/" } { "418a45d5-cad1-4b39-9a88-b6454771565e" = "luxe: shape2D.wren" } { "418e3cc4-2b79-4343-811e-f7a15bc1d72a" = "luxe: build/material_input.wren" } { "419deda8-48ef-4af8-a52d-76f885e23452" = "luxe: physics/default.body.physics.lx" } { "41eea475-ec67-4faa-b7f2-c2863278d5f7" = "textures/env_lo/tex_road_plain_02.png" } + { "4233a203-aefe-4219-9555-bc1aba340e54" = "prototype/arena01.prototype/arena01_0_worldspawn.entity.lx" } { "4266c2e5-3ed5-475e-b0ab-65caf0f742c8" = "textures/env_lo/tex_wood_grain_01.png.import" } { "427e0cab-c322-43c3-a3b8-ea9fb3d7440b" = "luxe: image/visible.png" } { "42ea78bb-e6ed-4e35-9e24-63bf30334f4e" = "luxe: ui/scroll.wren" } @@ -196,86 +265,118 @@ { "43d3032a-42ad-4baa-b97d-a44ca8439db9" = "textures/special/clip.image.lx" } { "4445e92a-f563-4bb1-9b92-f63c88417351" = "luxe: ui/list.wren" } { "4455c83d-f0eb-48a2-a2d9-8803dda14689" = "luxe: type/basis.asset.wren" } + { "449d8231-4e59-4949-a08f-f6a1a8c96edd" = "prototype/arena01.prototype/" } { "44aaee6a-b0c5-406e-9190-2c7ba8783db3" = "textures/special/skip.png" } { "44b11a5a-337f-4b69-aa24-3bdabe325515" = "luxe: asset/import/sprite.import.ui.lx" } { "45459d4b-0639-499b-a6cf-c45a99278065" = "luxe: type/sys.asset.wren" } { "458246df-80be-4b0f-aacc-50ac7ca872ed" = "textures/env_lo/tex_billboard_02.tres" } + { "45dfbd97-0eff-44ef-8c20-36480629be4b" = "prototype/arena01.prototype/" } { "462dee36-0d53-4436-81b3-f605dab6d5ff" = "luxe: image/modifier/wires.svg" } { "46485275-be93-4537-9eec-4d91f64fd2ea" = "luxe: image/select-all.svg" } + { "46659106-2371-4458-8b31-37851ce1f9de" = "maps/arena01_0_worldspawn.obj.assets/special/clip.material.lx" } + { "466a40d3-c620-4dde-9a04-5779bdaeab2e" = "prototype/arena01.prototype/arena01.prototype.lx" } { "46acc360-9359-4547-bebe-7b18199591d2" = "func_luxe: core/" } { "46e71a25-6f0b-4f5f-ba72-7f39c9dfdd82" = "textures/env_lo/tex_tile_tan_02.image.lx" } + { "470d360c-aedd-4055-b9c1-286d1b31429a" = "maps/arena01_0_worldspawn.obj.assets/" } { "472a52dd-98c0-4a29-9d3d-68c136a3f0e1" = "textures/env_lo/tex_painted_lighttan.tres" } { "474a2a6e-5b44-4207-a373-3dd517fe2aa0" = "luxe: type/audio.wav.asset.wren" } { "47dc7e2a-6ae2-433e-820f-f948cde810ed" = "luxe: material_basis/vector.material_basis.lx" } { "48ec633c-6e3f-4db8-ba46-db17ae6999a7" = "luxe: image/logo.png" } + { "494cf641-7fb9-40c6-b5db-36268ea97a45" = "prototype/arena01.prototype/arena01_0_worldspawn.entity.lx" } { "499d4cb0-c33d-4e9e-8467-8f1df07c2bd3" = "luxe: material_basis/debug_line3d.material_basis.lx" } + { "49a45f9d-c85f-45d9-b50b-75b47bbb13a2" = "maps/arena01_0_worldspawn.obj.assets/env_lo/tex_brick_01.material.lx" } { "49a6ead3-bb0f-4090-bd3e-07b86602654d" = "textures/env_lo/tex_glass_01.png.import" } { "49acf614-0127-4775-b741-3ed8ed417c2a" = "luxe: material_basis/ui_solid.material_basis.lx" } { "49fb711e-d89d-48c9-8cd8-5a2edc560f46" = "luxe: system/skeleton.modifier.wren" } - { "4a2e5545-6d4e-4ab8-8c67-8b2c55b7b60b" = "prototype/" } - { "4ac485a5-4dce-46a1-b345-a337e3ca79e1" = "prototype/arena_01.prototype/arena_01_0_worldspawn.entity.lx" } + { "4a7cacbb-b182-4d72-a814-ac9d93d7a695" = "scene/scene-FAv.scene/entity.91m.entity.lx" } { "4b006c68-f0fa-492c-8453-f6e20fa36892" = "luxe: system/tags.modifier.wren" } + { "4b0893a4-95e0-45f7-a0c2-6a793639ed78" = "prototype/arena01.prototype/arena01.prototype.lx" } + { "4b47977e-f0b8-4617-83c1-9cc130d15f07" = "prototype/arena01.prototype/prototype/arena01.instance/" } { "4b74983a-8a4e-4243-99bb-21b006838412" = "textures/env_lo/tex_metal_lightgray_02.png.import" } { "4b81272c-3e94-48bd-a5be-25b04932d662" = "func_luxe: core/geo_generator.wren" } + { "4b8874d5-ce52-49da-a2cc-a94677abc03c" = "prototype/arena01.prototype/arena01_0_worldspawn.entity.lx" } { "4bc31e29-ccc0-4d66-a39d-6ea5abdd52c9" = "luxe: ui/editor.panel.progress.ui.lx" } { "4bdfddff-3f3e-48fb-a388-74e81eeffd2b" = "luxe: ui/editor.panel.outline.prototype.entity.ui.lx" } { "4c672b6d-b6ad-4615-9315-4575f6309040" = "textures/env_lo/tex_brick_04.png" } { "4c817f8d-457e-4a89-ae6a-1c88a308ce1d" = "luxe: ui/editor.panel.modifier.tiles.ui.lx" } + { "4c9a27cb-ee72-4d4c-8e8e-a5248b5f94f0" = "maps/arena01_0_worldspawn_col.mesh.lx" } { "4ce41557-7e6d-474b-95cd-acb6ced3364c" = "luxe: image/proto-open.svg" } + { "4d01467d-dd61-478d-a3d4-a7796c66cd19" = "maps/arena01_0_worldspawn.obj.assets/env_lo/tex_road_side_01.material.lx" } { "4d5a2a7a-12ce-42cb-89ae-bcb2c6fa7045" = "luxe: ui/editor.panel.outline.scenes.ui.lx" } { "4e2ef951-1420-4f7b-8e69-f017a84e4540" = "luxe: render_data.render.lx" } { "4e584db7-0e93-4bf0-91ee-7e8454db77a3" = "luxe: type/font.face.ttf.asset.wren" } { "4e586b86-5625-416f-b608-9a5a4eb7591e" = "textures/env_lo/tex_metal_lightgray_01.png.import" } { "4eab80ca-4cbb-4046-95bc-fa1943773c6e" = "luxe: font/" } { "4ec00484-318a-412e-8a5b-b5d1f5759810" = "luxe: plot.wren" } + { "4ed3bc23-90d7-4288-a9a5-5fcb5613ea6e" = "README.md" } { "4ede2ef1-58d8-4000-b38c-1bbb36dacf3b" = "luxe: ui/progress.wren" } + { "4edee4f4-c25d-4152-8f9d-3ab481a09002" = "maps/arena_01_0_worldspawn.obj.assets/env_lo/tex_carpet_green.material.lx" } { "4f45e124-37be-43f6-918d-a82037fc26c4" = "luxe: material_basis/color_pick_ring.material_basis.lx" } { "4f4851d0-b4b7-49dd-8bef-bbe00e5b17ce" = "luxe: system/transform.modifier.wren" } + { "4f729dc7-a257-4d94-b084-c556075e42f3" = "maps/arena01_0_worldspawn.obj" } + { "4f8766c5-8820-43c6-bdd0-71bccb9d89f5" = "maps/arena01_0_worldspawn.obj.assets/env_lo/" } + { "4fd632a6-01a1-4acc-a19f-570bd2c0605c" = "maps/arena01_0_worldspawn.obj.assets/env_lo/tex_concrete_01.material.lx" } { "4fe620ea-6514-4137-9338-e64d36507922" = "textures/env_lo/tex_brick_01.png" } { "505c9b4e-c532-4bea-980c-d448f362aacd" = "luxe: build/wrenalyzer/visitor.wren" } { "50e96084-8f2c-45fc-8fb3-ae1127b10c93" = "luxe: modifier/script.wren" } { "51370c3c-740d-47d4-a361-c40153f83a16" = "luxe: image/logo.sprite.sprite.lx" } { "51412908-c6d9-46b1-9bb4-2efbfa02da5d" = "textures/env_lo/tex_brick_07.image.lx" } + { "51a86add-7bd6-4ca2-95c7-96aaa78dd72a" = "maps/arena01_0_worldspawn.mesh.lx" } + { "51d6b23e-9da7-4678-89ac-407d610610a8" = "maps/arena01_0_worldspawn.obj.assets/env_lo/tex_tile_tan_01.material.lx" } { "5249ea90-34a9-441d-a6a0-9a94dd3a076d" = "luxe: system/physics/contact.block.wren" } { "524b0500-88d2-43a4-880e-7889fd67f2aa" = "luxe: ui/editor.panel.modifier.script.ui.lx" } - { "524b1d81-e692-4a72-8b75-02f6f1e869cc" = "maps/arena_01_0_worldspawn.obj.assets/env_lo/tex_tile_tan_01.material.lx" } + { "52774272-9453-4717-a795-b8f9ba4ec1b5" = "maps/arena01_0_worldspawn.obj.assets/env_lo/tex_carpet_green.material.lx" } { "5285599d-54b0-49d7-9f67-70a4c14dbd4e" = "luxe: build/deploy/deploy.mac.wren" } + { "534a29d3-1852-4f94-a8f1-2feeb39aacd1" = "maps/arena01_0_worldspawn_col.mesh.lx" } + { "534b2871-7e9a-4939-93a0-58901809e877" = "maps/arena01_0_worldspawn.obj.assets/env_lo/tex_road_side_01.material.lx" } { "53664479-2371-472f-aa5d-9c97e85f4cbe" = "luxe: type/mesh.asset.wren" } { "537821a0-21e6-4a1f-81d3-5c40a38b4d78" = "luxe: image/folder-closed.svg" } { "5386db91-1177-4d24-896e-4a57d717eb8e" = "textures/env_lo/tex_walk_yellow_01.png.import" } { "53b0b502-f059-4135-978b-dd6f865e0b6e" = "luxe: build/meshes.wren" } + { "53d0d14a-ebf0-46cb-90d6-475c360ee1c9" = "maps/arena01_0_worldspawn.obj.assets/special/clip.material.lx" } + { "53fdc292-de4c-4798-967f-f2ae3d2f30bf" = "maps/arena01_0_worldspawn.obj.assets/env_lo/tex_carpet_green.material.lx" } { "545b474a-27c3-46c4-93cd-885920d6bd5f" = "textures/env_lo/tex_tile_04.png.import" } + { "547bc858-4ec4-4367-8601-24e2e6bc0a51" = "maps/arena_01_0_worldspawn.obj.assets/env_lo/" } { "5515b6b3-84de-4e85-a29c-e96d89484a83" = "textures/env_lo/tex_glass_01.png" } { "55338ca0-3f1a-46de-a853-ae108df9df1f" = "luxe: material_basis/solid.material_basis.lx" } { "553e3386-9d56-4533-b336-cc49b6f6ce33" = "luxe: toggle.wren" } + { "554d6dd3-1f7e-4951-8ccf-d3a2652f6dad" = "scene/crash_test.scene/crash_test.scene.lx" } { "55788203-09b4-4a20-9971-677f8d2b4a91" = "luxe: version.wren" } { "557c27d0-5c76-4928-b58a-4ad7ddeaff54" = "luxe: sample/" } { "55bea3a1-0951-4c0e-a711-ec0c6eacafa2" = "luxe: type/http/server.request.block.wren" } + { "55c8fea7-2038-4a48-b7ee-8ca6adfba26b" = "prototype/arena01.prototype/arena01_0_worldspawn.entity.lx" } { "564dd610-513b-4703-be7e-05a546ba01d9" = "textures/env_lo/tex_brick_02.png.import" } - { "564f64c5-8a4b-461c-ae0c-e7ef84df2817" = "maps/arena_01_0_worldspawn.obj.assets/env_lo/tex_carpet_green.material.lx" } { "5661af78-c77a-4c8b-84b3-8d9f2b5ff073" = "textures/env_lo/tex_concrete_02.png" } { "56639684-dcf4-4094-84e5-82fb10e67e96" = "textures/env_lo/tex_metal_midgray_03.image.lx" } { "567a1d24-92a2-402a-8f1f-aad8008f553f" = "luxe: ui/editor.panel.slider.ui.lx" } { "56d2aac3-593c-4f46-a3e3-399a57f3e45f" = "outline/renderer.wren" } + { "57340b97-787a-4fae-936b-00c282a55874" = "maps/arena01_0_worldspawn.obj.assets/env_lo/tex_brick_01.material.lx" } { "58025e8d-05b7-47da-a8ba-5798f990a300" = "luxe: type/image.psd.asset.wren" } { "584bc186-eec3-48c1-a096-ae7e1ca1f94b" = "textures/env_lo/tex_tile_green_02.png" } + { "58cc89ac-d819-4a66-99de-536594b4822f" = "prototype/arena_01.prototype/" } { "58f90cf0-3a15-4871-9177-d567b177afb8" = "luxe: system/physics/character3D.modifier.api.wren" } { "5908c85f-c050-4291-ab05-58f32f43d2af" = "luxe: type/modifier.asset.wren" } { "594741d0-58dc-482f-aa3f-83a5eaf32683" = "luxe: noise.wren" } + { "59604c9b-a411-481d-9898-ab106941c58c" = "maps/arena01_0_worldspawn.obj.assets/env_lo/tex_brick_01.material.lx" } { "598e114f-fd94-4866-b90b-4e0a313dcf0a" = "luxe: sample/app.wren" } { "59c1e97b-07f8-4189-82a0-61b03234311a" = "luxe: math.wren" } { "59c9fad2-c21d-4f12-8e75-32dd9ba1576d" = "textures/env_lo/tex_painted_lighttan.image.lx" } + { "59ffe1ce-d10c-468d-bc9b-182660c41aee" = "maps/arena01_0_worldspawn.obj.assets/env_lo/tex_brick_01.material.lx" } { "5a8aeb53-efc2-4f74-900b-cd87ec4cdde3" = "luxe: ui/editor.panel.modifier.mesh.ui.lx" } + { "5af597c0-408a-4eb5-a51f-deb472a57a81" = "maps/arena01_0_worldspawn.obj.assets/env_lo/" } { "5af6d2d4-409f-4137-853d-f211602615dd" = "textures/env_lo/tex_carpet_green.png.import" } { "5b2f1286-d705-47eb-9235-5a7742d9637c" = "luxe: ui/editor.panel.outline.layer.ui.lx" } + { "5b57923a-60ea-42c7-b968-dcc59715a2ae" = "maps/arena01_0_worldspawn.obj.assets/env_lo/tex_tile_tan_01.material.lx" } { "5bba6963-bd5a-44cf-aa7a-83aae1cff5e7" = "luxe: triangulate.wren" } { "5be49438-dcc7-4fd0-8dbd-eae90ce548d6" = "textures/env_lo/tex_metal_lightgray_02.image.lx" } + { "5c3b20b5-9b01-4e6a-a7e0-3747ec113872" = "maps/arena01_0_worldspawn.obj.assets/env_lo/tex_concrete_01.material.lx" } { "5c50fa7b-528d-46f1-a147-e1b1323f0018" = "textures/env_lo/tex_painted_darkgreen.tres" } { "5c664aea-99f0-4ca7-9544-b5d05b19de48" = "luxe: ui/text.wren" } { "5cb370b8-6bcc-4e9c-a38e-a350966d2ffe" = "luxe: style/" } { "5d039d26-5124-485e-819a-24e3772a8e20" = "func_luxe: core/map_data.wren" } { "5d651902-9960-46cd-b8f7-1dfbc2c75e6f" = "textures/env_lo/tex_metal_09.png.import" } { "5d869f85-7fd0-42d4-a2fe-a7dee49ed23e" = "textures/env_lo/tex_tile_08.tres" } + { "5d9e1559-0675-4dc9-88f7-ba73c6572212" = "maps/arena_01_0_worldspawn.obj.assets/env_lo/tex_brick_01.material.lx" } { "5df41a20-9475-491b-8394-d11c534ce91b" = "luxe: asset/import/physics.import.lx" } { "5e15aa53-83e2-4f54-bf95-a4a601098da5" = "textures/env_lo/tex_prop_locker01.image.lx" } { "5ea8f95f-26b8-45d6-bcda-32fdc91f7bbc" = "textures/env_lo/tex_tile_03.png.import" } @@ -283,16 +384,21 @@ { "5ef6b3fd-980e-4113-bac2-789aae11415d" = "scene/arena01.scene/instance-VS3.instance/arena_01_0_worldspawn.override.lx" } { "5f283252-ffdc-47e5-aa11-b4efb2786a0b" = "luxe: ui/tabs.wren" } { "5f29e61a-0aac-452d-a3e0-0e43d7e38571" = "textures/env_lo/tex_stucco_01.image.lx" } + { "5f560df6-af63-436a-a163-1d2a558286d6" = "maps/arena01_0_worldspawn.obj.assets/" } { "5fed6566-47a6-4504-a3ad-ccdb90802bc2" = "textures/env_lo/tex_walk_yellow_01.image.lx" } { "602265e1-be17-452c-9985-223b379b9eef" = "luxe: project.wren" } { "604d9a72-0daf-4375-a449-bb9c1bdb7d27" = "textures/env_lo/tex_tile_04.png" } - { "61761f50-8409-4425-9ed0-6c2d148e69a9" = "scene/arena01.scene/TrenchbroomMap.instance/" } + { "6062d0b2-5c9e-489e-a80d-6f9e0a8a47c4" = "maps/arena01_0_worldspawn.obj.assets/special/" } { "61a111c8-3340-42a6-b098-6e220b054f48" = "luxe: ui/field/framemarks.wren" } { "61c003a1-c7b7-4a15-97f3-bdb5c1c72995" = "luxe: system/physics/character3D.modifier.wren" } + { "61dc0176-10a6-46bf-b025-4579cd352266" = "maps/arena01_0_worldspawn.obj.assets/env_lo/tex_road_side_01.material.lx" } { "61e62fc2-b883-47b3-a68f-c976390c41cf" = "textures/env_lo/tex_tile_tan_03.image.lx" } + { "61ee541e-56ef-4365-8ef4-23b379c5bf7c" = "maps/arena01_0_worldspawn.obj.assets/env_lo/tex_carpet_green.material.lx" } { "624b752f-27e1-48df-9d1f-39a51761c468" = "textures/env_lo/tex_metal_midgray_03.png" } { "62a0e2b6-1595-44c3-96be-bcce77d225e7" = "luxe: build/deploy/deploy.web.wren" } + { "62a8fc59-de58-49bc-893c-e1ea8d84fbb7" = "scene/arena01.scene/" } { "62c2bc33-c3ac-4182-ba33-df725edd8625" = "luxe: type/anim.asset.wren" } + { "62d316e3-f348-4715-b3d8-dc29a8ee589c" = "maps/arena01_0_worldspawn.obj.assets/env_lo/tex_brick_01.material.lx" } { "633b2084-efff-420a-a10c-78f5744974e2" = "textures/env_lo/tex_road_cross_02.image.lx" } { "63743be9-b727-47c6-bfa9-cf2af7e14cc5" = "icon.image.lx" } { "64322dff-dc64-486b-b141-571b761b0427" = "func_luxe: basis/" } @@ -302,20 +408,26 @@ { "64983972-6ccd-498d-8a7f-e7baa1fa8c77" = "textures/env_lo/tex_road_cross_02.tres" } { "64b50ecf-3695-495a-8109-f36b6ee07aa2" = "textures/env_lo/tex_metal_darkgray_01.image.lx" } { "650a1861-30b3-485f-bbce-df13321ab45d" = "textures/env_lo/tex_roadside_03.image.lx" } + { "6524aa80-a260-4c45-b984-cabd9bb6ad3d" = "maps/arena01_0_worldspawn.obj.assets/special/clip.material.lx" } { "656dc483-8bfd-4e56-8e06-f769396b65f9" = "textures/env_lo/tex_roadside_02.image.lx" } { "65a3efa4-50cb-4bb4-b501-0f2f1a5aba22" = "textures/env_lo/tex_metal_black_01.png" } + { "65edbc4a-73d1-4909-bfdb-e70d41c7e755" = "maps/arena01_0_worldspawn.obj.assets/" } { "65f52372-a602-453c-bf6c-88388477fc3c" = "textures/env_lo/tex_tile_07.png" } { "661202d2-a88f-4f6a-9980-a49f29b1b2eb" = "luxe: image/empty.image.lx" } { "669f5582-44be-413f-a3b6-9c04fe44031e" = "luxe: type/anim/sprite.frames.anim_track.wren" } { "6716c7e4-869a-40eb-b19c-c0f4a2c04118" = "maps/" } { "67192e9c-a987-4961-8c6c-b3b1a0ec35ac" = "luxe: world/prototype.wren" } + { "6741dfe0-88cf-4f70-978b-5802cbef6360" = "maps/arena01_0_worldspawn.obj.assets/env_lo/tex_tile_tan_01.material.lx" } { "674251a4-ea6d-4de0-9fe8-a369057048e1" = "luxe: moduler.wren" } { "675bb2bf-ad40-498e-8018-131637c2ba73" = "luxe: type/http/" } { "679732eb-53e0-4232-824e-bf4bb67297ab" = "textures/env_lo/tex_metal_lightgray_01.tres" } { "67e372fc-1fd3-4253-97ef-ba9ee9c15124" = "luxe: build/wrenalyzer/ast.wren" } { "67eb5fb0-6c76-44cd-a029-de89a3769dfa" = "maps/arena_01_0_worldspawn.obj" } { "67f46adb-f364-4924-abee-0264e5ba139c" = "textures/env_lo/tex_glass_01.image.lx" } + { "683ef6be-65ef-4bad-a195-a7bc6d67d5aa" = "maps/arena01.mtl" } + { "684e9e47-3901-432e-8ed0-f0ba2c9ad1d1" = "prototype/arena01.prototype/" } { "68abcc66-1075-42f9-a746-07feced2bc30" = "textures/env_lo/tex_tile_08.png.import" } + { "6953edbd-1742-41f3-bc60-a8a49afca5ff" = "scene/arena01.scene/instance-3aV.instance/instance.entity.lx" } { "697da9a3-fe63-4ac7-90fd-d37e9a326036" = "luxe: modifier/anim.wren" } { "6a012a92-2241-4b0f-933c-a1608e7e3506" = "luxe: regex.wren" } { "6a405619-3c8b-40da-8fad-1abbc6e73bd8" = "luxe: ui/editor.panel.modifier.sprite.ui.lx" } @@ -325,74 +437,111 @@ { "6ae14110-5638-4aff-bc81-38f87bfcd13f" = "func_luxe: fgd/base.fgd.lx" } { "6af570e8-5050-48b0-8c28-aa0a5c884953" = "luxe: image/select-inverse.svg" } { "6b0094c3-cde7-4ed8-9641-a329bce61f98" = "luxe: image/select-none.svg" } + { "6b1c1a3f-64bb-4877-94db-ba68ecf1ff32" = "prototype/" } { "6b2236ac-43bb-41d5-9777-8d1c7307cbac" = "luxe: font/Lato-Italic.face.lx" } + { "6b68d110-d2ac-43bd-bdc6-3431e5018269" = "prototype/arena01.prototype/prototype/arena01.instance/" } + { "6b846446-fa0d-4bb3-80d7-6579ad7e4c98" = "maps/arena01_0_worldspawn.obj.assets/special/clip.material.lx" } + { "6ba7b77c-da54-47e2-8b30-e08b6d516ded" = "maps/arena_01_0_worldspawn.obj.assets/" } { "6c45b540-1f8d-4fd0-9807-7f9e0beb6739" = "textures/env_lo/tex_road_cross_03.png.import" } + { "6cc6b8bd-970d-4d7b-b161-ebca85290a46" = "maps/arena01_0_worldspawn.obj.assets/env_lo/tex_tile_tan_01.material.lx" } { "6cc9abee-36eb-4fc1-8f3f-8fe80bf6c952" = "luxe: type/physics.asset.wren" } { "6ce19f80-1987-4195-a1df-588639c4a702" = "luxe: image/active-context.svg" } - { "6d0fca0d-2fb1-4192-a985-aa1f62d68dda" = "prototype/arena_01.prototype/arena_01.prototype.lx" } { "6d9020b8-d184-49e4-ac0b-a88ba32810ea" = "outline/" } + { "6dabb72f-dce3-4cec-9866-bc8ac65b61b2" = "maps/arena01_0_worldspawn.obj.assets/env_lo/tex_brick_01.material.lx" } + { "6e23f88d-f5e8-43c2-a5e4-037f7e57ac1d" = "prototype/" } { "6e7fc774-f089-411c-a79e-e9cef07989cf" = "textures/env_lo/tex_metal_10.image.lx" } { "6ebc5d94-ecd3-4d4a-8199-d5ba4992bc63" = "textures/env_lo/tex_wood_slats_01.png" } { "6f080e82-cd74-4be3-b7fd-6ac2b167922c" = "outline/inputs.input.lx" } { "6f0938c6-7ea8-4ba3-ac76-cffcdb90c00b" = "luxe: system/physics/box_collider3D.modifier.wren" } { "6f49cc4a-adb5-4c22-8c0f-f37883e09374" = "luxe: build/dependency.wren" } - { "7008c5af-b739-49fc-9ecd-2ba4b48ed254" = "scene/arena01.scene/entity.r68.entity.lx" } + { "6f6fc21c-271a-4c0c-94aa-37e22d2075ab" = "prototype/" } { "703d51c6-42b6-4311-ac1c-0f9a509746c3" = "luxe: ui/field/color.wren" } { "7076047a-c14f-4960-8ebc-5bad766cfd1a" = "luxe: font/lato-bold.font.lx" } { "709da8eb-b372-43cc-9ed5-6727bb5b2b96" = "textures/env_lo/tex_road_cross_02.png.import" } { "7115932f-7ab7-416f-9536-0e43468d4d6d" = "luxe: debug/" } { "7150e167-ed4f-4fd8-bc85-0bd867ddef86" = "luxe: build/deploy/" } + { "71c9b0ed-e50b-4213-b68a-3eae510264bb" = "prototype/arena01.prototype/arena01.prototype.lx" } { "71e6686a-7a64-4e49-8a11-d20ff1226a8e" = "func_luxe: entity_def/worldspawn.entity_def.lx" } { "721bcf58-8df4-4202-9604-180932f8acef" = "luxe: build/shaders.wren" } { "724a7b67-0610-46f3-aeba-240559e70638" = "textures/env_lo/tex_brick_02.image.lx" } { "72895c82-2455-48d3-85ad-9fe28ca440b1" = "luxe: material_basis/sprite_solid.material_basis.lx" } + { "729c59cd-e7ae-475c-a050-71a06702f4a3" = "prototype/arena01.prototype/" } + { "72d148cf-a37d-4bd1-8b11-3cbd594f14d5" = "scene/arena01.scene/instance-3aV.instance/instance.override.lx" } + { "72e96fe5-c9ce-43b8-b29f-00f73000504a" = "prototype/arena01.prototype/arena01_0_worldspawn.entity.lx" } { "73297ab4-c1d7-4252-a10d-9fd1a10492c0" = "textures/env_lo/tex_brick_01.png.import" } + { "743736ef-63e6-452b-9606-392444094463" = "prototype/" } { "74a49f36-1b15-4147-a4e1-90a06125de54" = "textures/env_lo/tex_tile_06.png.import" } + { "74ab9f8e-489d-4ed3-bfae-95bc41950501" = "maps/arena01_0_worldspawn.obj.assets/env_lo/tex_road_side_01.material.lx" } + { "75819545-b46f-4333-aa3b-0bf956b996b0" = "maps/arena01_0_worldspawn.obj.assets/" } { "766456ef-364f-4dfd-a1fa-0aeeb07ae745" = "luxe: image/save.svg" } + { "769edd39-c642-4ca0-8350-5f69b42d2248" = "maps/arena_01.mtl" } { "76f219bb-7e48-4faf-a16f-95a2e286a6ae" = "luxe: tiles/" } { "773d9e43-da0e-4611-8f2f-27a4e4188d20" = "textures/env_lo/tex_road_cross_03.tres" } + { "77c0e724-27fa-42f1-9619-ea159d7ae7f0" = "maps/arena01_0_worldspawn.obj.assets/env_lo/tex_brick_01.material.lx" } { "77d62c87-23c4-4c73-829c-c5f26aa967b2" = "textures/env_lo/bowl.png" } { "78242e90-6316-4edf-a042-8efa8761259d" = "textures/env_lo/tex_wood_slats_01.png.import" } { "786f4a6d-9e78-4e64-97d7-e7063f2e810f" = "scene/arena01.scene/arena01.scene.lx" } { "787959d8-941f-4336-afb4-8a571589ed07" = "luxe: ui/block.wren" } { "78830304-83cb-4a36-9f74-b488c02fa854" = "luxe: material_basis/color_pick_transparency_grid.material_basis.lx" } { "7898f0a6-e205-4f7e-a8a7-10c6e290518e" = "luxe: ui/button.wren" } + { "78a38d21-5006-4f86-b21e-e955140884cd" = "maps/arena01_0_worldspawn.obj.assets/special/clip.material.lx" } { "78df96d0-9ded-48dc-b687-e06d2417edf7" = "luxe: ui/field/choice.wren" } + { "791e2629-c939-4b69-aea0-648ebce3c767" = "maps/arena01_0_worldspawn.obj.assets/special/clip.material.lx" } + { "79512121-9f1f-47e9-9579-8b4585f6a7a1" = "prototype/arena_01.prototype/" } { "798ac08e-688f-49fc-9f82-3eba5271c133" = "textures/env_lo/tex_brick_09.png.import" } { "7a3b8b49-6cd9-4029-b41e-2c6a9310cb96" = "luxe: font/Lato-Regular.face.lx" } { "7a45118a-6519-433a-8926-3bf3474a735b" = "luxe: image/modifier/camera.svg" } + { "7a86c4d0-cbf5-40db-ac3d-ccd5b96d13ab" = "maps/arena01_0_worldspawn.obj.assets/env_lo/" } { "7aa8cb7e-aca9-46d0-9e0a-5b81af0fa8e8" = "textures/env_lo/tex_prop_lockers01.png.import" } { "7abbb302-751d-49b0-b321-9bc13d8c1541" = "func_luxe: type/" } + { "7acd2600-30be-48c5-9319-4558095cb9db" = "prototype/" } { "7ad5d1f2-0bc2-454e-b37d-9a82ff84d355" = "textures/env_lo/tex_tile_green_02.png.import" } + { "7b274629-b9e2-4ba1-95a2-eea6af2bb071" = "prototype/arena01.prototype/arena01.prototype.lx" } { "7b35abca-5bac-4cea-a090-bb2437d98d10" = "luxe: material_basis/sprite_pixelated_AA.material_basis.lx" } + { "7b9d3efe-dc59-44d3-a248-bc618a26b64f" = "maps/arena_01_0_worldspawn.obj.assets/env_lo/tex_carpet_green.material.lx" } + { "7bad35de-3628-40f0-b824-68c8cad2f8f2" = "maps/arena_01_0_worldspawn.obj.assets/env_lo/tex_concrete_01.material.lx" } { "7bdd3056-3545-4187-9a39-4171e2a68889" = "textures/env_lo/tex_road_plain_01.tres" } { "7c02a4bd-8d2d-43d9-971f-b6dbe3c57003" = "luxe: templates/sprite.prototype/sprite.prototype.lx" } + { "7c852959-95da-4644-bace-7c8ada4aac4d" = "maps/arena01_0_worldspawn.obj.assets/special/" } { "7cbe02e1-7ab4-4fb2-ad3b-21ffb81d2b87" = "luxe: system/physics/cast_ray.block.wren" } { "7cf312ef-66ef-4756-8b39-74131ef84fbe" = "textures/env_lo/tex_brick_07.png" } { "7d225758-5de5-450e-aa9a-5a57708ba55d" = "luxe.project/asset.wren" } + { "7d96589c-6a9e-4aab-9dc0-4d422130692e" = "prototype/" } + { "7dfe0add-0dc0-4a9c-91d8-051b665e4f48" = "prototype/" } + { "7e17ad6d-4430-4188-94c3-86d520205e0f" = "maps/arena_01_0_worldspawn.mesh.lx" } { "7e553536-e05d-47c1-bfb8-e00ca6343271" = "textures/env_lo/tex_prop_lockers01.image.lx" } - { "7e87a7fd-471d-466c-87a1-04fd105fa077" = "prototype/arena_01.prototype/arena_01.prototype.lx" } + { "7e58fed3-b808-460f-8de8-93f5818bf54c" = "maps/arena01_0_worldspawn.obj.assets/" } { "7e900da5-b7f9-456a-b315-044c588f3e98" = "func_luxe: fgd/basic.fgd.lx" } { "7f7e8d94-172b-4335-a229-dab313cf4208" = "textures/env_lo/tex_concrete_03.image.lx" } { "7f85cc45-a155-4704-8d43-7e0d31dd554f" = "luxe: render/font.wren" } + { "7fbee9fc-7689-4af6-b054-7442665e5d0f" = "maps/arena01_0_worldspawn.obj.assets/special/clip.material.lx" } { "7ff507de-40dd-41f0-bff0-0750a8aed36f" = "luxe: type/audio.ogg.asset.wren" } { "807c4fab-714b-40c4-aab1-b56693197ec5" = "textures/env_lo/tex_wood_03.png" } { "815d1a05-79ee-42d2-959e-d235b9ad427b" = "luxe: type/anim/skeleton_clip.anim_track.wren" } { "81deec4d-3e64-4ae0-ac9f-00b2bee62c5b" = "textures/env_lo/tex_tile_tan_03.tres" } + { "8223a797-9ec7-43f2-bbdc-1fce2f08f1a5" = "maps/arena01_0_worldspawn.obj.assets/" } { "823564a1-4156-48c7-a08d-7f3af8b2de14" = "luxe: material/" } { "82cefa5c-a2be-4205-8627-5a361a9420d9" = "textures/env_lo/tex_tile_tan_01.tres" } { "82d871e3-c0b2-4550-9dcf-b0e512db39b6" = "textures/special/clip.png.import" } + { "83332138-73a6-4536-9896-6893d50ac67b" = "prototype/" } { "83527e80-d6f9-49fd-81a3-a861cd359b1d" = "luxe: id.wren" } + { "8377182c-f99a-4ee9-ac4c-9f95f1dedef7" = "maps/arena01_0_worldspawn.obj.assets/env_lo/" } + { "838b73ba-401a-4963-87ba-90e903d45cce" = "maps/arena01_0_worldspawn.obj.assets/env_lo/tex_concrete_01.material.lx" } { "84513e56-8c2c-4638-b983-dd6f651af88f" = "luxe: material/logo.sprite.material.lx" } { "8479ffe5-6912-4fd1-bd04-c42222934166" = "luxe: sample/game.wren" } + { "84a427fa-4a7a-43a2-967a-fa071bb57696" = "prototype/arena_01.prototype/prototype/arena_01.instance/" } { "84e2a44c-4a34-4220-8bcd-ea5d3825b86d" = "textures/env_lo/tex_concrete_02.image.lx" } { "84ff2ac5-1604-4c71-933b-76c8c4506f6d" = "textures/env_lo/tex_linoleum_01.tres" } { "850c027b-6078-4469-8b25-d417affce745" = "luxe: ui/field/" } + { "85ce276b-3549-4485-8525-ee25dd88ddb7" = "scene/arena01.scene/arena01.scene.lx" } { "85dfae9f-83dc-430b-b9cb-28f2361de03a" = "luxe: type/tiles.brush.asset.wren" } { "85f3d9ab-9f43-4797-b36c-4a798ea8a36d" = "luxe: pose/blend.pose_node.wren" } { "86408f35-08f5-492d-86b7-64a63a8a2eca" = "luxe: type/image.exr.asset.wren" } { "8667d7d3-a935-4974-be2f-4065c31b23b5" = "textures/env_lo/tex_metal_midgray_01.png~" } + { "8676009e-a84d-470a-acaf-95fa710daa0f" = "maps/arena01_0_worldspawn.obj" } { "86dbccb1-8d56-48f2-8b2d-d0c9f82f92a3" = "luxe: modifier/tags.wren" } + { "86e15159-94ee-42d5-ba85-88a6bde34f14" = "maps/arena01_0_worldspawn.obj.assets/env_lo/tex_road_side_01.material.lx" } + { "87161f7b-4811-4c84-a5d2-b831f7d90516" = "prototype/arena01.prototype/prototype/arena01.instance/instance.entity.lx" } { "874d90cf-f01f-4d52-9cf4-9aee525d8b17" = "luxe: templates/sprite.prototype/" } { "875f3021-6814-4c7e-a058-cbdc0cf5c7af" = "luxe: system/text.modifier.wren" } { "878ea519-80a1-47a3-a707-d80b68a38a49" = "luxe: build/uis.wren" } @@ -401,61 +550,92 @@ { "87e90956-1d2b-4f1b-a020-2c1636ada892" = "func_luxe: entity_def/func_detail.entity_def.lx" } { "880245b3-bd53-49fe-8197-e8392c141341" = "maps/arena_01_0_worldspawn_col.obj" } { "8844334c-3e47-4d72-8d37-f84fde590fb1" = "textures/env_lo/tex_wood_flooring_02.png" } + { "88c6b3a1-7351-4030-81ec-7e4faf9a8337" = "maps/arena01_0_worldspawn.mesh.lx" } + { "88e610ac-2a8f-4df8-88b6-c1cd7f7296a0" = "maps/arena01.mtl" } + { "88f4f4eb-8a25-4124-b67e-55c73adab225" = "maps/arena01_0_worldspawn.obj.assets/special/" } { "89536aa5-bbe8-468f-a85b-6868169e8eb6" = "textures/env_lo/tex_wood_grain_01.png" } + { "899e6d8b-2c26-4480-ad84-09a621181a7b" = "prototype/arena01.prototype/arena01_0_worldspawn.entity.lx" } + { "89c5498d-1be8-44bd-a9fa-dbb7107e7b16" = "maps/arena01_0_worldspawn.obj.assets/env_lo/tex_carpet_green.material.lx" } + { "8a43790e-3405-4906-86da-6a91ded8d1e9" = "maps/arena01_0_worldspawn.obj.assets/" } + { "8a727fc1-dfb9-4a38-8652-10d47f82b991" = "maps/arena01_0_worldspawn.obj.assets/special/clip.material.lx" } + { "8b009bb3-6455-4c45-a583-9c8074b8910e" = "prototype/arena01.prototype/arena01.prototype.lx" } { "8b203951-7b5d-4db8-840a-76f64d845222" = "luxe: type/font.asset.wren" } { "8bb201c7-f43a-4e96-ac00-e5a5551d6091" = "luxe: build/wrenalyzer/chars.wren" } + { "8c6c17aa-695b-47ae-8e9b-8221188a40e1" = "maps/arena01_0_worldspawn.obj.assets/special/clip.material.lx" } + { "8c7f6d0e-cade-4048-a393-3089799a8ec6" = "maps/arena01_0_worldspawn.obj.assets/env_lo/tex_carpet_green.material.lx" } + { "8c99471d-27d4-4c08-86f8-59d99c369d9a" = "maps/arena01_0_worldspawn.obj.assets/env_lo/" } { "8cbdaf57-dcc7-436a-b850-6fcec0a4f3fe" = "textures/env_lo/tex_road_plain_02.png.import" } { "8ce7c0e5-a1a7-495b-8d71-b2168609c3ca" = "textures/env_lo/tex_concrete_02.png.import" } { "8df2c03e-e7c0-400f-971a-b676980af0ae" = "textures/env_lo/tex_road_cross_01.png" } { "8e04322a-fbf0-470a-96b2-8c85caa75289" = "luxe: asset/import/image.import.wren" } - { "8e3d851e-a08f-4e80-abec-d6dca5c860f8" = "maps/arena_01_0_worldspawn.obj.assets/special/" } { "8e4d80b2-88ad-4d3c-b4ab-b983a0d0acc7" = "textures/env_lo/tex_tile_07.image.lx" } { "8e636310-d6bd-4fb2-a44a-c62835072829" = "luxe: build/lxc.wren" } { "8e7227e5-7d8a-4b9f-ac99-67424ed9022c" = "textures/env_lo/tex_wood_03.image.lx" } + { "8e93ce1a-ef74-4708-912c-5b626172ac80" = "maps/arena01_0_worldspawn.obj.assets/env_lo/tex_concrete_01.material.lx" } { "8e96dac1-4acb-40ad-a56c-d4b853ef0a1c" = "textures/env_lo/tex_metal_midgray_02.tres" } { "8eb47b4e-deb5-46c8-bec2-24a2079e7b55" = "textures/env_lo/tex_tile_tan_01.png" } { "8efe196a-05d6-4865-9248-becfa17f5fab" = "textures/env_lo/tex_wood_03.png.import" } + { "8f123d48-89e1-457d-bffe-7d39844ce795" = "scene/crash_test.scene/test_entity.entity.lx" } { "8f52de11-cd8e-4ff1-b5c5-c2b58f5c0174" = "textures/env_lo/tex_metal_darkgray_01.tres" } { "8f7b157a-93e1-41b0-930c-617de5b143f9" = "luxe: bytes.wren" } { "8fbc16fe-8d9f-4c17-982d-c30e6e2ad95d" = "luxe: type/image.jpg.asset.wren" } { "8feaf42e-9cff-4d8f-9981-6d7feda3401e" = "textures/env_lo/tex_roadside_02.tres" } { "9016c181-1a69-41ca-a901-361e61e754d0" = "textures/env_lo/tex_tile_09.png" } - { "90464f06-fcdc-4327-83b2-e73651f7fd97" = "maps/arena_01_0_worldspawn.obj.assets/special/clip.material.lx" } { "906bfe23-2ed4-4e7d-9598-ffde79a2d039" = "scene/arena01.scene/" } { "9074f10c-c096-46fb-8e0e-42c64c324423" = "textures/env_lo/tex_linoleum_01.png.import" } { "9097f18b-77a2-47b0-88a8-0cc8ab78bc1f" = "luxe: build/wrenalyzer/source_file.wren" } + { "90ad280d-afac-41c2-9046-39b2068ecdae" = "maps/arena_01_0_worldspawn.obj.assets/env_lo/tex_tile_tan_01.material.lx" } { "90d47128-2b14-4935-b962-abed58c72a7d" = "luxe: world/scene.wren" } { "9168b16c-6341-4aec-bbc0-29c7cc09649b" = "textures/env_lo/tex_fence_chain_01.image.lx" } { "91803c95-1858-4211-ba45-fc7440ad1656" = "luxe: image/copy.svg" } { "91c1874a-5461-4340-9c02-4a6f8a2945db" = "luxe: type/mesh.preset.asset.wren" } { "91dc5070-1e4c-4eb6-b982-4db42214ecaf" = "luxe: type/anim/" } + { "91ef9694-0bcd-41c0-b70a-4d844058c58d" = "maps/arena01_0_worldspawn_col.obj" } { "921c5576-434d-48b8-9ec6-38c6d81e687b" = "luxe: build/images.wren" } { "9258d16f-6f4c-4cbc-adc8-1988096a24cb" = "luxe: asset/import/material.import.lx" } { "92617ca3-b9b6-475a-b197-5aa505b067e5" = "luxe: build/wrenalyzer/resolver.wren" } + { "92858639-232e-49c2-a1a8-ce1e597cf79c" = "maps/arena01_0_worldspawn.obj" } { "92a31733-f20b-4f71-912f-69770290b58b" = "textures/env_lo/tex_metal_darkgreen_01.tres" } + { "92d7fc62-14c9-4945-bae4-a8503f54dc55" = "maps/arena_01_0_worldspawn.obj.assets/env_lo/tex_concrete_01.material.lx" } { "9396f5a6-305c-4aca-ac5a-d3944cc3eeca" = "luxe: astar.wren" } { "947a297a-894f-4295-bb74-b1cd11939d7a" = "luxe: material_basis/sprite.mips.material_basis.lx" } { "9505e8fe-4235-4ad8-8190-c559174149d5" = "luxe: ui/editor.panel.outline.scene.ui.lx" } - { "953a6e55-e22f-4be5-873e-f22561bba3a0" = "maps/arena_01_0_worldspawn.obj.assets/env_lo/tex_road_side_01.material.lx" } + { "9514daf4-420f-4ecc-8315-549d29b77cb6" = "maps/arena01_0_worldspawn.obj.assets/special/" } + { "95550e4b-40e9-478a-b1f1-edc1df52c7fe" = "maps/arena01_0_worldspawn.obj.assets/" } + { "955f4551-69f6-4a38-9d25-7e6c85b5bef3" = "maps/arena_01_0_worldspawn.obj.assets/special/clip.material.lx" } + { "96acb946-d6cd-4036-8916-6edf17be84af" = "maps/arena01_0_worldspawn.obj.assets/special/" } + { "970a2262-2a68-4de8-bdbf-f7d899e4bef4" = "maps/arena01_0_worldspawn.obj.assets/" } + { "97249088-a8ff-476a-8fc5-b5743e023b56" = "prototype/testing.prototype/" } + { "9750acd9-fe97-46cc-b4d2-931eab29430d" = "maps/arena01_0_worldspawn.obj.assets/special/" } + { "97e6d94f-a58a-4fd9-8f88-c3ab6106cab0" = "maps/arena01_0_worldspawn.obj.assets/env_lo/" } + { "982d45ea-c06f-46e0-addc-97bfa124a9a9" = "prototype/arena01.prototype/arena01_0_worldspawn.entity.lx" } { "983300c6-5762-4bba-82f4-b0b7f31ae7b9" = "luxe: image/luxe.char.sprite.lx" } - { "98954e59-c500-4013-8283-1ade4ae19e79" = "prototype/arena_01.prototype/arena_01_0_worldspawn.entity.lx" } + { "9851ed61-2e89-4173-a78f-41bd195beceb" = "maps/arena_01_0_worldspawn.obj.assets/env_lo/" } { "995fc5de-6799-4f8c-ae38-f37364a7a12c" = "luxe: ui/editor.panel.button.ui.lx" } { "9983c001-a383-49e0-a532-6d62d600cef0" = "luxe: font/Lato-Regular.ttf" } { "998d4cfc-76a0-4189-9bf3-ae92556f934e" = "textures/env_lo/tex_brick_04.image.lx" } + { "9990ffa7-929d-4b21-8940-571ead4a579e" = "scene/scene-FAv.scene/scene-FAv.scene.lx" } { "9a269855-5bc6-4ee5-9833-807c640bb6e5" = "luxe: style/default.text_style.lx" } { "9a5148e1-0fdd-4141-ad85-22a382f3c516" = "luxe: build/wrenalyzer/token.wren" } { "9a5fcd78-4241-4584-b205-78d6f94cc609" = "luxe: ui/field/path.wren" } { "9a8316db-ad67-458d-833d-61ba0a6e1dc1" = "textures/env_lo/tex_road_cross_02.png" } { "9a9e5edb-af69-4040-a83e-f8b5b583f533" = "luxe: image/template-closed.svg" } { "9af8b96e-64eb-447d-bec3-0e491fd94287" = "luxe: type/asset.meta.asset.wren" } + { "9b39b3ab-0fcf-4bc1-a4e7-3e77bf8c12a8" = "maps/arena01_0_worldspawn.obj.assets/" } + { "9ba30df0-946d-4c53-a3fc-150d4c0034ed" = "prototype/arena_01.prototype/arena_01_0_worldspawn.entity.lx" } + { "9ba72d39-e01d-4765-bb21-0d8a811cb0e5" = "maps/arena01_0_worldspawn.obj.assets/special/" } { "9cc01d4f-ab7a-4eca-ab4b-bdea4471b3e1" = "luxe: string/po.wren" } { "9ce88ce9-98ef-45fc-a53f-07776b6b96f7" = "luxe: ui/editor.panel.modifier.transform.ui.lx" } { "9cf9ca22-aa54-46bb-911b-85f1d9b4fa0e" = "luxe: ui/editor.panel.label.ui.lx" } { "9d55f7bb-2ba2-4258-a90c-a31da477f2c4" = "luxe: tiles/default.tiles_visual.lx" } + { "9e97c8b8-992c-4afb-ac35-26c50d148dbb" = "maps/arena01_0_worldspawn.obj.assets/" } { "9ec008b9-2ea2-48d1-aad0-9100f2be27c9" = "luxe: build/tiles.wren" } { "9f2fdb93-2832-4cf0-ae74-cd72018b0d4a" = "func_luxe: texture_default/textured.material.lx" } + { "9f9de658-96d9-4c29-aaca-11cfcab628df" = "maps/arena01_0_worldspawn.obj.assets/env_lo/" } { "9fb92c96-538c-4a0d-93e7-c6b0ccb47e9f" = "textures/env_lo/tex_metal_darkgreen_01.image.lx" } { "9fe35a23-539b-4236-80d1-f005a7be9e70" = "luxe: sample/sample.wren" } + { "9fe5d147-5f17-40ee-9795-f3f2edcbd3d2" = "maps/arena_01_0_worldspawn.obj.assets/env_lo/tex_road_side_01.material.lx" } + { "9fe7d17a-5cb4-45ec-be1e-d7d6900630d3" = "prototype/" } { "a04b9b30-799c-487d-a6df-e01c13f55638" = "textures/env_lo/tex_painted_lighttan.png" } { "a0cb5b22-6e88-4607-a89c-e5718c650aaa" = "luxe: type/skeleton.asset.wren" } { "a16df612-f309-4d5b-8edf-0768e2b8eb74" = "luxe: io.wren" } @@ -466,6 +646,7 @@ { "a291f9a3-bb44-44d9-9795-5660c4f1ca65" = "luxe: ui/control.wren" } { "a2ad8ffb-5199-4f37-91f9-59d65ef40eba" = "textures/env_lo/tex_painted_darkgreen.image.lx" } { "a2e23e29-e466-484d-afd8-c3a2fbdebff1" = "luxe: image/visible.off.image.lx" } + { "a2e5d423-24a0-4cb4-ac61-d2f16ee6b5e3" = "prototype/testing.prototype/testing.prototype.lx" } { "a2f0020f-b92e-4906-a549-7c9fa93734de" = "textures/env_lo/tex_metal_15.image.lx" } { "a3b06165-8020-4019-9264-0fda562c0747" = "textures/env_lo/tex_walk_yellow_01.png" } { "a40b733b-158b-4133-9754-b792e2ecfb38" = "textures/env_lo/tex_wood_grain_02.png" } @@ -478,28 +659,36 @@ { "a5612f24-0889-4c31-9a1e-b898a398d068" = "scene/arena01.scene/entity.oeE.entity.lx" } { "a592c43e-a9bf-4f99-bc35-c9473b11674d" = "scene/arena01.scene/instance-VS3.instance/instance.entity.lx" } { "a5c1114d-ccb0-483d-bfde-6bf06d33bb05" = "luxe: system/physics/" } - { "a62c3d4b-2b49-40f5-b42b-e7ee577eabc9" = "prototype/arena_01.prototype/prototype/" } + { "a60b2929-a422-41b0-8986-bd0842cc69fa" = "maps/arena01_0_worldspawn.obj.assets/env_lo/" } + { "a672530f-6516-4a75-9443-4895a92f8c3a" = "scene/arena01.scene/arena01.scene.lx" } { "a6c155d8-5ccc-41d9-a7cc-4bc5104bdfcf" = "textures/env_lo/tex_tile_green_03.tres" } { "a7441c5b-6582-4a39-b433-4dfe388b39b4" = "luxe: image/entity-1.svg" } { "a74f82e8-86d1-41a3-ab88-8a2095200186" = "textures/env_lo/tex_road_cross_01.image.lx" } { "a78297c3-bf20-4d8b-8ac4-b344637c775a" = "func_luxe: type/entity_def.asset.wren" } + { "a787cd78-1f41-4086-ab2d-1a29b54f3bf4" = "prototype/" } + { "a7a5dd75-01c3-410a-a7a8-9c90d63fd238" = "maps/arena01_0_worldspawn.obj.assets/env_lo/tex_concrete_01.material.lx" } { "a7aee425-9e15-4859-a145-a0feaa95fe83" = "luxe: terminal.wren" } + { "a7dcede1-451e-42ba-bac6-c480bda21163" = "maps/arena01_0_worldspawn_col.mesh.lx" } { "a7e30304-4000-4ede-815f-f3f4da533139" = "luxe: material_basis/sprite.material_basis.lx" } { "a828f382-ad35-4444-bed0-33096afabaf3" = "luxe: material_basis/font.material_basis.lx" } + { "a8624e78-6337-40da-8551-924dc4446c5b" = "maps/arena01_0_worldspawn.obj.assets/env_lo/tex_brick_01.material.lx" } { "a889a58a-fdbc-428d-a756-0fe90c69849d" = "luxe: pose/clip.pose_node.wren" } { "a9062104-7db2-4698-bd56-80ea04bf0675" = "luxe: image/logo.sprite.image.lx" } { "a90d864b-d821-4847-9488-a5f97a9776d8" = "luxe: render/" } - { "a916aca5-031e-42f8-b1b2-f6972a3a777b" = "maps/arena_01_0_worldspawn.obj.assets/env_lo/tex_concrete_01.material.lx" } + { "a9507d4a-d6e7-48c7-a3cf-40594cc67e67" = "prototype/arena01.prototype/" } { "a95df88f-98d8-4401-bf5b-0ec182f16590" = "luxe: material_basis/mesh_line.material_basis.lx" } { "a9fdbeaf-ccf6-49d4-804d-c2922481c534" = "luxe: build/blocks.wren" } { "aa7467c4-798f-4f64-ab31-4fcbd91e7ebf" = "textures/env_lo/tex_brick_03.image.lx" } + { "aa8d5a1a-c47e-4085-b72f-b5b1d8cc25ca" = "maps/arena01_0_worldspawn_col.obj" } { "aab37517-823e-4f8e-a743-e6bd69380bc0" = "textures/env_lo/tex_concrete_03.png" } { "aad634b3-af7d-4057-a453-ee735b6ba096" = "textures/env_lo/tex_wood_flooring_02.png.import" } { "ab3c29a8-d6dd-4122-b199-1fe0a54968d0" = "textures/env_lo/tex_metal_darkgray_01.png.import" } { "ab48c9b0-5f42-440c-9935-108a540c36c0" = "textures/env_lo/tex_wood_flooring_01.image.lx" } { "abad1323-40fe-44d0-bdb3-15cba03fc07c" = "luxe: ui/label.wren" } { "abd0f195-7eae-40b0-8ef7-a75f368222df" = "luxe: system/tiles.modifier.wren" } + { "abdac1bb-54e8-4565-9b91-02b0893276c9" = "maps/arena01_0_worldspawn.obj.assets/env_lo/tex_carpet_green.material.lx" } { "ac33518d-5fca-413f-a6b7-f9e7ce42271f" = "luxe: image/logo.sprite.png" } + { "ac402e4b-1b25-41be-a4ab-baeff266aad0" = "maps/arena01_0_worldspawn.obj.assets/special/clip.material.lx" } { "ac91dded-01ec-4999-8775-af82c1657591" = "luxe: type/tiles.asset.wren" } { "acde7299-c412-46d9-93b9-76d1519da87a" = "luxe: type/mesh.fbx.asset.wren" } { "ad311bda-febb-49de-8ff2-581199645ea0" = "luxe: image/modifier/sprite.svg" } @@ -509,10 +698,10 @@ { "af584dc7-e649-48ff-9f1c-606010585ebd" = "textures/env_lo/tex_wood_grain_01.image.lx" } { "afbca820-ce95-4853-ab16-f974fe6e8f08" = "textures/env_lo/tex_wood_grain_05.png.import" } { "afc5d82d-3e72-45c9-9c5b-3669f4ec9dff" = "luxe: type/loc.po.asset.wren" } - { "afd6a19c-93fe-4a6b-875c-746c2c48e9d2" = "scene/arena01.scene/" } { "b020b47a-f6d5-4194-be69-c6aefc3c6ff5" = "textures/env_lo/tex_painted_darkgreen.png.import" } { "b049b6d7-3490-45b9-bab9-0a41e6285b77" = "textures/env_lo/tex_tile_05.png" } { "b11d1917-e5b6-4be3-94e9-c56f39ccfe31" = "luxe.project/refs.lx" } + { "b1b6b394-903e-48ab-a800-1629e092f158" = "prototype/TestPickup.prototype/Visual.entity.lx" } { "b1ceb024-2e92-4a2e-8efc-0aac648baef3" = "textures/env_lo/tex_tile_07.png.import" } { "b1eea627-9164-49b5-a2ca-333243930dfd" = "textures/env_lo/tex_brick_02.tres" } { "b26e6395-ed6c-4b06-9551-05a946dddb8d" = "textures/env_lo/tex_metal_midgray_03.tres" } @@ -521,25 +710,34 @@ { "b2fc5794-6f98-451d-bf8b-edf854744ffd" = "textures/env_lo/tex_painted_black.png" } { "b35018b2-d33f-4f68-baa6-85677f564621" = "luxe: material_basis/transparent.material_basis.lx" } { "b3706cf3-5739-4276-91bd-e38870e126da" = "func_luxe: core/map_parser.wren" } + { "b39aac97-341d-4823-a025-43ee5e5c90d8" = "prototype/arena01.prototype/" } { "b3b13250-efc4-48d4-b054-a2878472de6f" = "textures/env_lo/tex_tile_green_02.tres" } { "b3c1309e-6476-457b-86f3-f610604217f9" = "textures/env_lo/tex_metal_midgray_02.png" } { "b3d8c6e4-c44b-4c4e-9779-f065deef19a5" = "luxe: ui/editor.panel.outline.entity.ui.lx" } + { "b49b6ba1-da96-4ecf-a83b-68282c02d87e" = "maps/arena01_0_worldspawn.obj.assets/env_lo/" } { "b51ffee6-a9cd-44da-bb03-6a5d855f760d" = "luxe: image/" } { "b527b441-3c4e-4760-ab3c-32078b0774d4" = "textures/env_lo/tex_tile_09.image.lx" } + { "b590ebdb-b097-4e8c-881f-0f51e7692186" = "prototype/arena_01.prototype/" } { "b5a18a21-e98e-47b9-aac0-0520acedfba7" = "textures/env_lo/tex_wood_flooring_01.png.import" } { "b6169c96-528d-420f-95e1-fa2487515e2c" = "textures/env_lo/tex_road_side_01.png" } + { "b620bf54-8b72-4439-9df1-86fb57121f3c" = "maps/arena_01_0_worldspawn.obj.assets/special/" } { "b64399eb-ad71-4e7a-b240-9bc85a0c8def" = "textures/env_lo/tex_tile_08.image.lx" } { "b6883628-54e0-4dd9-9eb6-4dc9ab8a58cc" = "textures/env_lo/tex_metal_black_01.png.import" } + { "b689a241-c6ca-4eb9-a943-05bf1ab2be56" = "maps/arena01_0_worldspawn.obj.assets/" } { "b6a311f3-5555-469f-a5ee-03f24ec43157" = "icon.png" } { "b6a60a77-f397-4468-a5b3-a28cfe352d1f" = "textures/env_lo/tex_tile_07.tres" } { "b6d30b66-eed2-4905-85fa-91c0bc7a4e54" = "luxe: system/camera.modifier.wren" } + { "b6dc44c4-b26e-461d-8c8b-c3d3037b4a7e" = "maps/arena01_0_worldspawn_col.obj" } { "b6decd29-788e-476d-826d-8eb1e4c3219e" = "textures/env_lo/tex_metal_red_01.tres" } + { "b6eac953-3641-45a5-8831-fa900fad67d7" = "maps/arena01_0_worldspawn.obj.assets/special/" } { "b7913ebe-9ae9-4bea-9182-b236f977906a" = "luxe: ui/window.wren" } { "b7d53e94-ca1e-42d4-aae4-e9795b0a4aec" = "luxe: fuzzy.wren" } { "b7df1647-5cab-423b-a343-12003129e961" = "textures/env_lo/tex_tile_05.png.import" } + { "b8ae3711-9b02-424f-9db1-8c9e17524ce8" = "prototype/arena01.prototype/arena01_0_worldspawn.entity.lx" } { "b8f5275d-bfc3-40d7-9c14-59d3f583aa2b" = "luxe: asset/import/material.import.wren" } { "b90c7ee3-c956-4be7-983a-47197bd55c32" = "textures/env_lo/tex_wood_04.image.lx" } { "b9259fe0-72eb-4a26-885e-e0b23c3947a5" = "luxe: build/wrenalyzer/reporter.wren" } + { "b94e3a54-e92c-447a-8d08-2c2ac79759e7" = "maps/arena01_0_worldspawn.obj.assets/env_lo/tex_brick_01.material.lx" } { "b952d49b-62d2-4b8b-9a32-972b637b9482" = "maps/arena_01.mtl" } { "b96525a4-c8d9-46de-9a3a-01f31df92450" = "textures/env_lo/tex_prop_locker01.png" } { "b993e26b-1fcc-47c9-9c43-60a13d0417a9" = "textures/env_lo/tex_tile_tan_01.image.lx" } @@ -547,22 +745,27 @@ { "ba00be74-6819-4c8b-baf1-8a1e1a15a7c9" = "textures/env_lo/tex_concrete_03.png.import" } { "ba110576-82d6-421b-9b94-461cbccf25d7" = "luxe: system/physics/mesh_collider3D.modifier.wren" } { "ba5df728-f35e-4c16-b8ea-80b9c1f9a71e" = "luxe: type/tiles.visual.asset.wren" } + { "bab027a2-d813-439b-b657-d1e0d7cf320c" = "prototype/arena01.prototype/prototype/" } + { "bacffe20-90d3-41d7-a279-5cb1ef883a0b" = "prototype/arena01.prototype/prototype/arena01.instance/instance.entity.lx" } { "bae87b34-6071-4c79-b9b9-d04d09d6a00b" = "textures/env_lo/tex_painted_black.tres" } + { "bb905b06-61f7-4333-aba3-875421e9060b" = "prototype/" } { "bbdd6f78-160f-4f09-a903-9a6cf0c2fb29" = "textures/env_lo/" } { "bbed69d1-40fe-477c-a348-b653fac545ae" = "luxe: type/material.asset.wren" } { "bc3d8f91-69db-492f-a42b-fd1c53ee430c" = "textures/env_lo/tex_brick_04.png.import" } { "bc9adffb-e731-4475-a9c8-550351d09091" = "luxe: templates/text.prototype/text.prototype.lx" } { "bd34fa91-8811-401a-a096-d2f393beae35" = "textures/env_lo/tex_road_walkway_01.png.import" } - { "bd845115-3823-4cc7-8165-6a6b9a0422e6" = "prototype/arena_01.prototype/" } + { "bd3651cb-42d2-4c1f-bcea-8c64f9144c1f" = "prototype/arena01.prototype/arena01_0_worldspawn.entity.lx" } + { "bd77c8f2-5819-44ac-907b-b52514ccc9e1" = "scene/crash_test.scene/" } { "bd93f564-5325-42bf-8d8f-4dac846270f2" = "luxe: draw.wren" } - { "bd9930da-7fc5-4c5f-9f38-0a1e3867fa0a" = "maps/arena_01_0_worldspawn.obj.assets/special/" } { "bd9d5cf2-bd58-4cdb-8424-3d7bc15984a4" = "luxe: build/prototypes.wren" } { "bd9e9662-20b3-4167-a433-220f278aee9a" = "textures/env_lo/tex_tile_tan_02.tres" } + { "bdf0491b-7b31-4368-9e0a-c55675eae21d" = "maps/arena01_0_worldspawn.obj.assets/env_lo/tex_concrete_01.material.lx" } { "bdf6fd48-d61a-472d-afc5-c9f26c26ef07" = "textures/env_lo/tex_stucco_01.png.import" } { "be232cd0-09a7-4469-bf02-14ebe75f5ddb" = "textures/env_lo/tex_glass_02.png.import" } { "be5deb48-0e4e-4488-a714-07631ac8da5b" = "luxe: type/block_def.asset.wren" } + { "be7ce5e6-1ed0-4df8-b3ba-34fc5a2b1015" = "maps/arena01_0_worldspawn.obj.assets/env_lo/tex_brick_01.material.lx" } + { "beb66ddf-f096-4aa6-8c4c-8ab0f5d815cb" = "prototype/" } { "bef4060e-b66b-47d8-9799-fb1097948617" = "textures/env_lo/tex_painted_lighttan.png.import" } - { "bf77ef73-170a-438d-9bb2-028305307a66" = "maps/arena_01_0_worldspawn.obj.assets/special/clip.material.lx" } { "bf84cfce-159b-4805-ac07-69408ac85fff" = "textures/env_lo/tex_road_walkway_01.tres" } { "bfe1ba5f-2a76-48b5-a850-05f8954a638b" = "luxe: build/wrenalyzer/scope.wren" } { "c0091a2f-3da9-4f7a-b2da-5c91cb2b5849" = "luxe: mat4.wren" } @@ -575,9 +778,11 @@ { "c1cb4d75-3716-4a85-ba5a-0450a03409fb" = "func_luxe: type/map.asset.wren" } { "c21f8896-dab9-4fb2-b614-34be9f308cc9" = "textures/env_lo/bowl.image.lx" } { "c262c93a-c1a8-429d-a1ea-3ae70200e9ab" = "textures/" } + { "c2bc1e72-12d6-48ac-be1d-6abad327451f" = "prototype/arena01.prototype/arena01.prototype.lx" } { "c2dfd2fe-3259-4fe9-8799-6e66c276fd3f" = "textures/env_lo/tex_marble_01.image.lx" } { "c32dc99c-3c2c-46d1-8470-fe5c726b5482" = "textures/env_lo/tex_road_stairs_01.tres" } - { "c34a9c22-ba44-42e7-ab7c-e988c98f560d" = "scene/arena01.scene/TrenchbroomMap.instance/instance.override.lx" } + { "c3636726-2545-453e-8279-28727e6a5c6d" = "prototype/arena01.prototype/arena01_0_worldspawn.entity.lx" } + { "c3830618-1647-4045-b121-e0d112078a00" = "maps/arena01_0_worldspawn.obj.assets/env_lo/tex_concrete_01.material.lx" } { "c3e261b0-cb8c-493e-a46b-47b3b88f020a" = "textures/env_lo/tex_fence_chain_01.png" } { "c414398c-e2ea-4ff1-9d4f-1cb09a83aefa" = "luxe: system/camera.modifier.api.wren" } { "c415c745-0858-4124-a84d-d7fe2fad3421" = "textures/env_lo/tex_road_side_01.tres" } @@ -586,34 +791,44 @@ { "c467f680-3c57-4607-a7a6-1cbd14bfd958" = "luxe: ui/panel.wren" } { "c46acd19-747b-47f6-90dd-4f3295c85fc2" = "luxe: material_basis/mesh_solid.material_basis.lx" } { "c4701c93-2460-41a7-91fa-4cd772cabb69" = "luxe: shaders.emsl" } + { "c48d1324-99eb-4444-ac18-a8343ed28fbe" = "maps/arena_01_0_worldspawn.obj.assets/" } { "c4ba89a5-4b2e-4ac4-9dd9-5e6d01779203" = "textures/env_lo/tex_carpet_green.image.lx" } { "c565c5c6-3eff-473d-a433-292df1428a13" = "luxe: image/logo.image.lx" } + { "c5969990-8a82-450a-8588-3d96e0c4b96f" = "prototype/arena_01.prototype/arena_01.prototype.lx" } + { "c606ae16-021e-4489-85b3-1b4b53b5366c" = "maps/arena01_0_worldspawn.obj.assets/env_lo/tex_road_side_01.material.lx" } { "c6152808-a5eb-456f-92a3-264477c0b54a" = "luxe: system/anim.modifier.api.wren" } - { "c6894c25-a77b-43ac-b097-5c3cd318ef70" = "maps/arena_01_0_worldspawn.obj.assets/env_lo/tex_concrete_01.material.lx" } { "c6a1b577-dd93-4e8e-9657-efa069783f26" = "luxe: material_basis/sprite_outlined.material_basis.lx" } { "c6a5c2f8-d7d4-4c98-9f8a-ef0486fad66d" = "luxe: image/select-siblings.svg" } { "c6fa1f22-1c3d-4225-a485-ed5266ec1716" = "luxe: asset/import/mesh.import.lx" } + { "c75a67dc-fbba-4415-a945-737acee59962" = "prototype/arena01.prototype/" } { "c77edae3-1090-4a4a-84c0-2fab781c1ede" = "textures/env_lo/tex_metal_midgray_slats.png.import" } { "c7ae419c-874f-4c25-ad45-de9c91d3461a" = "luxe.project/" } { "c7bdc1e2-7bf6-4f7b-a95b-6e9447f3cd16" = "luxe: build/wrenalyzer/parser.wren" } { "c7ed2038-1ebf-4884-a834-debaa699989c" = "luxe: system/physics/physics3D.modifier.wren" } + { "c7eeb688-6dfa-4101-beaf-330dafdac7cc" = "maps/arena_01_0_worldspawn.obj.assets/special/clip.material.lx" } + { "c85ffc95-de28-4db8-a012-a14c5067e91b" = "maps/arena01_0_worldspawn.obj.assets/env_lo/tex_concrete_01.material.lx" } { "c86c3b48-d5fa-4247-908f-357d70730331" = "luxe: system/sound.modifier.wren" } { "c8dfa5c3-4909-4225-9af4-74114b9c4116" = "luxe: ui/editor.panel.modifier.values.ui.lx" } { "c8ecb93a-3ad0-4d24-b77e-39f9334dc75e" = "textures/env_lo/tex_metal_darkgreen_01.png" } + { "c91295f6-f523-49de-b718-c56ecd1dcee0" = "maps/arena01_0_worldspawn_col.obj" } { "c9386c6e-6edd-4be4-992b-e0bf6274e473" = "textures/env_lo/tex_tile_green_03.png" } + { "c951d71a-2c16-451f-bf7e-62a23b3edfc3" = "maps/arena_01_0_worldspawn.obj.assets/env_lo/tex_road_side_01.material.lx" } { "c9664d94-239a-44de-a19d-9d6548b0d672" = "luxe: font/lato.font.lx" } - { "c9707282-aea9-40a4-bc71-f1e17a5e54ac" = "maps/arena_01_0_worldspawn.obj.assets/env_lo/tex_brick_01.material.lx" } + { "c981c6e3-fc68-4839-8fab-afcb1a3fc207" = "prototype/arena01.prototype/arena01_0_worldspawn.entity.lx" } { "c9ad68c0-cf85-43f9-85a6-fe7ac78f16d0" = "textures/env_lo/tex_wood_grain_05.tres" } { "c9f3e11a-6227-4c76-b9f4-86b33512fc99" = "textures/env_lo/tex_tile_06.png" } + { "ca39284b-3af8-41b5-b121-47a4426a05ee" = "prototype/arena_01.prototype/arena_01.prototype.lx" } { "ca941245-99a1-4812-9231-b7b63886ef2c" = "textures/env_lo/tex_brick_08.png.import" } { "ca9f7f3b-6f59-4c83-bbcd-715d672acb1f" = "textures/env_lo/tex_wood_04.png" } { "caed1dcd-2ada-4681-9736-edff7c86e62e" = "luxe: image/close.sprite.lx" } { "cb0c18ec-7065-4c71-ac92-953ec798a6ec" = "luxe: image/edit.svg" } + { "cb7d3d55-d0ee-4a75-ab6b-04e363161e65" = "maps/arena01_0_worldspawn.obj.assets/env_lo/tex_carpet_green.material.lx" } { "cb9e5e49-4a1e-4e25-8a42-90ba77b9c1a4" = "luxe: material/mesh_solid.material.lx" } { "cc317193-a1c8-4ad2-b05a-2e6c3cb231b0" = "luxe: image/modifier/" } { "cc459a79-33fe-4a0e-b619-0b528a2d7f6a" = "maps/arena_01_0_worldspawn_col.mesh.lx" } { "cc4da535-c5e1-45da-8793-dc4dc93249dc" = "func_luxe: core/func_luxe.wren" } { "cc5abf94-4ace-4c18-9972-96e8cf4b071d" = "luxe: system/physics/mesh_collider3D.modifier.api.wren" } + { "cca86676-41e5-4005-85e7-1bf1b2ef53cb" = "maps/arena01_0_worldspawn.obj.assets/env_lo/tex_tile_tan_01.material.lx" } { "ccff75d9-7834-44d3-a303-f42598ca5931" = "luxe: build/wrenalyzer/generate_ast.wren" } { "cd76e767-7976-440d-a978-09d9e309e728" = "luxe: image/modifier/mesh.svg" } { "cd983f99-8a2b-4aa3-b790-9cda5ca4a48c" = "luxe: cable.wren" } @@ -624,17 +839,23 @@ { "ce88dab6-b9e0-46d8-bec4-dda5a90f4fb9" = "luxe: image/entity-0.svg" } { "ce99d4d9-0536-4535-922f-e41950f103e9" = "textures/env_lo/tex_glass_01.aseprite" } { "cea5e03c-1de3-459f-903d-7cbeb52317a3" = "luxe: image/modifier/transform.svg" } + { "ceabec15-2ce7-40d9-93ff-e687e51de219" = "maps/arena01_0_worldspawn.obj.assets/env_lo/tex_concrete_01.material.lx" } { "cebb2c04-136f-42b8-8eb2-4409064fadc8" = "luxe: image/modifier/tags.svg" } + { "cec2990d-8f4f-43e0-8955-9f22d4ca27d7" = "prototype/testing.prototype/testing_2_func_detail.entity.lx" } + { "cecd12d3-0882-4780-a0b2-41fdcb8ee701" = "maps/arena_01_0_worldspawn.obj" } { "ced7ac41-2395-4dcd-834d-d9d82e9c988f" = "textures/env_lo/tex_glass_02.tres" } { "cef56cd9-cabd-4c02-a98f-c899b3a94d5a" = "luxe: image/luxe.char.png" } { "cef7e256-a5c9-47ae-b81c-e529d48c7b8c" = "luxe: ui/editor.panel.modifier.tags.ui.lx" } { "cf03e0b9-9c3b-4977-acc2-0266888fc8a8" = "textures/env_lo/tex_wood_grain_02.tres" } + { "cf2fbb82-e752-4a48-a304-d9c36f209048" = "prototype/arena01.prototype/arena01.prototype.lx" } { "cf953544-8e72-4883-8eb6-21b8c0c2a2ce" = "luxe: build/compiler.wren" } { "cfa78066-2942-42b2-aab8-99be37d975b2" = "textures/env_lo/tex_billboard_02.png.import" } { "cfb6ac4b-c65c-44a7-a62b-d957ff2acb7e" = "textures/env_lo/tex_metal_midgray_02.image.lx" } { "cfcb1d64-9143-4ad8-a0fe-c9f6d9beb828" = "quench_tree.game_config.lx" } { "d0656d43-4667-43fc-a53d-b2bc8bd58a64" = "textures/env_lo/tex_brick_06.png.import" } + { "d06d9f35-5680-4175-a7e3-8191b4ab33d8" = "prototype/arena01.prototype/" } { "d06e77d8-9db5-43fa-93e9-6dcbab00f70c" = "textures/env_lo/tex_road_cross_03.png" } + { "d08bdecf-c790-42cc-81cb-b9d6e7cfe399" = "prototype/arena01.prototype/arena01.prototype.lx" } { "d09e0c7f-2276-4f51-9430-6f2705ae1c41" = "textures/env_lo/tex_wood_grain_02.image.lx" } { "d0a92445-3038-4a35-91a9-cb50a8ed3f50" = "luxe: type/font.face.asset.wren" } { "d0c00e3d-65d9-408f-924e-989edf798435" = "luxe: image/visible.off.png" } @@ -642,47 +863,65 @@ { "d0d5f754-c1f1-46cb-bf52-46f219b40adc" = "luxe: build/renders.wren" } { "d0fd98e5-4ad8-45a5-8133-e6a37fb05a93" = "luxe: asset.wren" } { "d16c7774-89ae-4832-b514-7611bd8a3657" = "luxe: type/font.face.otf.asset.wren" } - { "d16dbfcf-618c-4b23-80a1-7b0dbca1196a" = "scene/arena01.scene/TrenchbroomMap.instance/arena_01_0_worldspawn.override.lx" } + { "d1991ec4-d6f0-48db-ae85-76a2b94e352b" = "prototype/arena01.prototype/prototype/" } { "d1d3e880-e22f-461b-884f-04e371d834d1" = "luxe: ui/color_picker.wren" } { "d1d9c2f0-1996-4757-9886-aa43716f7073" = "luxe: font/Lato-Bold.face.lx" } + { "d2053e71-000a-462c-9ce2-63500a4c21ba" = "prototype/arena01.prototype/arena01.prototype.lx" } + { "d227234b-c0a9-45cc-8694-1d03b4e0867f" = "maps/arena01_0_worldspawn.obj.assets/env_lo/" } { "d27d7866-fc96-4198-b532-16feac5d08cb" = "luxe: image/modifier/skin.svg" } { "d28484b4-3b1d-45ae-9fe3-7633afe93be2" = "textures/env_lo/tex_metal_lightgray_01.png" } { "d2cd3cee-f3e1-4bb1-9afb-46aa71fbebbb" = "luxe: sat2D.wren" } + { "d346c4de-9e44-4c04-a6bc-0cb8cf3af281" = "prototype/arena01.prototype/prototype/" } { "d36692e5-a766-4b00-980b-e5f4cf0f4600" = "textures/env_lo/tex_road_walkway_01.image.lx" } { "d389e808-1a46-4d4d-ab39-69b69079cd8f" = "luxe: type/clip.asset.wren" } { "d3c73dc0-07be-4796-a489-bab975b462f4" = "luxe: build/reloader.wren" } + { "d431cc9a-4c17-4088-be40-9709b2297b52" = "maps/arena01_0_worldspawn.obj.assets/env_lo/tex_carpet_green.material.lx" } { "d4b2f026-054d-439a-ba34-c4e5dbe678a8" = "textures/env_lo/tex_metal_black_01.tres" } { "d5088f85-6b2d-459b-978b-02b239248ae6" = "luxe: type/block.asset.wren" } { "d5967a11-9edb-452e-a9ea-2e503c4c2a76" = "luxe: font/lato-italic.font.lx" } { "d60890f4-cd70-43b4-a6e0-647439c3f994" = "luxe: build/material_basis.wren" } { "d60d9864-2fe8-487c-ae79-1fcc72bec556" = "luxe: type/task.asset.wren" } - { "d617ca6c-0e4f-4c90-a814-637c7e430b5a" = "scene/arena01.scene/TrenchbroomMap.instance/instance.entity.lx" } + { "d628656b-e5f5-4374-b057-25842445428d" = "prototype/arena01.prototype/" } + { "d64556da-86ac-4fb0-85db-90653daa09ea" = "maps/arena01_0_worldspawn.obj.assets/env_lo/" } + { "d68821f5-8b04-4920-9fa2-f3d319e3d683" = "maps/arena01_0_worldspawn.obj.assets/" } { "d6f50871-5996-486d-aab8-33a93c81ae45" = "camera: first_person.wren" } + { "d711678c-81c8-405a-8350-9da2bc1ae324" = "maps/arena_01_0_worldspawn.obj.assets/" } + { "d729e581-d5f8-4b93-ba7d-be26fecb4c8d" = "maps/arena01_0_worldspawn_col.mesh.lx" } { "d74e573d-4c01-47ea-84bc-da452d74e3b0" = "luxe: asset/type.wren" } - { "d762ee8e-b40e-4e2e-b4f2-c9bec9d2f522" = "maps/arena_01_0_worldspawn.obj.assets/" } { "d7645285-42e8-4279-825b-2a53a98eb645" = "luxe: containers.wren" } { "d775591d-9486-476f-b37b-2927dad9921e" = "luxe: build/deploy/deploy.linux.wren" } { "d77fb473-4736-4c4d-8eb3-51626ab7c518" = "luxe: asset/import/modifier.import.lx" } { "d7c200c3-17b9-49c2-b0fa-c121835045b2" = "textures/env_lo/tex_metal_red_01.png.import" } + { "d7c64489-313f-403c-aebc-280c9c124e97" = "maps/arena01_0_worldspawn.obj.assets/env_lo/tex_concrete_01.material.lx" } + { "d84a7a8b-478f-48a3-b33a-d859a517465c" = "maps/arena01_0_worldspawn.mesh.lx" } + { "d86ca23f-19a9-4512-b840-3b607cfdcb2e" = "maps/arena01_0_worldspawn.obj.assets/env_lo/tex_tile_tan_01.material.lx" } + { "d93ea1c0-e58c-4b69-b1bd-f0b0d0eb3b1b" = "prototype/arena01.prototype/" } { "d949aa5b-3910-4aa3-9d7e-e2f606912c36" = "luxe: input.wren" } { "d961f187-99ae-48c5-a095-1ebdfe99a374" = "luxe: asset/import/sprites.import.ui.lx" } { "d9c7da69-a58c-494d-a47b-b7f2944eda12" = "textures/special/skip.image.lx" } + { "d9f27415-4ca8-409c-8cfe-51e94869a5d5" = "maps/arena01_0_worldspawn.obj.assets/" } + { "da216c50-f873-44c8-af07-71e572a8412d" = "maps/arena01_0_worldspawn.obj.assets/env_lo/tex_tile_tan_01.material.lx" } + { "da246111-0752-46dc-aa5e-d0e54ff67fee" = "maps/arena01_0_worldspawn.obj.assets/env_lo/" } { "db3e7bd9-9d72-4e0a-b55e-8cbe43277466" = "func_luxe: type/game_config.asset.wren" } { "db618085-af85-449c-a667-6b19217d0e04" = "luxe: system/values.modifier.wren" } + { "dbb442a8-2b68-482f-999f-b64b5a478dbc" = "maps/arena01.mtl" } { "dbbc2743-6533-4014-ada2-65939a9d7f93" = "luxe: type/mesh.glb.asset.wren" } + { "dbd29495-e216-4503-afb2-d547911c0097" = "maps/arena01.mtl" } { "dc1d02d2-8213-4113-a129-ed3f3eed953d" = "luxe: selection.wren" } { "dc33b150-9699-4f53-9e2f-3d8ed009cc41" = "textures/env_lo/tex_prop_lockers01.png" } { "dca358cb-c83d-47bf-b886-1561bf798944" = "textures/special/skip.png.import" } { "dd4a52f2-4ff3-471b-b20c-bb993e9d2daa" = "luxe: world.wren" } - { "ddcceab2-6e11-4348-8c11-1ac3df76ef95" = "scene/arena01.scene/arena01.scene.lx" } { "ddcdb988-8e22-40f4-b873-720390886b87" = "luxe: topograph.wren" } + { "ddea2e11-07bb-4d47-b219-1a6b3d97d1c6" = "prototype/arena01.prototype/arena01.prototype.lx" } { "de055ceb-86e2-4380-9f9f-656b5017094c" = "luxe: type/" } + { "de275be5-821b-40d9-aef0-cb769d804f13" = "scene/arena01.scene/instance-3aV.instance/" } { "de6644ed-4085-4679-ac74-5c300151a3ef" = "textures/env_lo/tex_brick_09.tres" } { "de9bc284-5db4-49c9-90ee-484495dd9982" = "luxe: type/atlas.asset.wren" } { "debc827a-bca4-4823-bbcc-d3d5f0486aec" = "textures/env_lo/tex_road_plain_01.image.lx" } { "defa2347-f15f-42a1-b987-2f78cf9e5f90" = "textures/env_lo/tex_metal_10.tres" } { "df175f1d-da93-4a8d-85de-47e728cd27c4" = "textures/env_lo/tex_metal_red_01.image.lx" } { "df3a3e57-5303-4da9-8833-f6f6e0b4b48f" = "luxe: material/mesh.debug.material.lx" } + { "dfaa730b-0640-47ff-bff8-cf2b540cfabb" = "maps/arena01_0_worldspawn.obj.assets/env_lo/tex_carpet_green.material.lx" } { "dfc1a4c3-199a-4c4c-a380-1cd19924332b" = "textures/env_lo/bowl.tres" } { "dfebd3a3-c000-48aa-b21c-ca9604a39e28" = "textures/env_lo/tex_wood_grain_05.image.lx" } { "e0538293-23c0-49c0-9c4b-ceab2020fe78" = "luxe: type/audio.asset.wren" } @@ -690,20 +929,26 @@ { "e143478f-f73c-4013-a3f6-9a8bcbec81ae" = "textures/env_lo/tex_metal_15.png" } { "e1722296-a93a-4eaa-934c-737c8082e479" = "luxe: asset/import/sprite.import.lx" } { "e1dc299a-e1d1-47d3-9924-42e50269bafd" = "textures/env_lo/tex_brick_02.png" } + { "e2557a3e-1854-4a79-bcb7-17180f4d7ffe" = "prototype/arena01.prototype/arena01.prototype.lx" } { "e2818569-93f6-4507-b6a4-e0118f5745e8" = "textures/env_lo/tex_linoleum_01.png" } + { "e291af44-2e87-4333-9b37-5084a2e259ea" = "prototype/arena_01.prototype/prototype/arena_01.instance/instance.entity.lx" } { "e345f4df-d28c-45b2-bb79-c0e589169f5e" = "luxe: docgen.wren" } { "e3f6c699-d7d7-4645-945b-43a84a1a101e" = "luxe: build/deploy/deploy.wren" } - { "e44a549f-d1c5-46eb-9ea1-ac42a91ca244" = "maps/arena_01_0_worldspawn.obj.assets/env_lo/tex_carpet_green.material.lx" } + { "e40a5074-39fd-4c82-954d-a171a255fa0c" = "maps/arena01_0_worldspawn.obj" } { "e47dd647-4471-46be-92df-f65ace79dbf0" = "luxe: build/materials.wren" } + { "e486a3a1-a93f-49da-95be-a3dee58cf241" = "prototype/" } { "e50895d2-d01b-4cff-ae8a-9ca1b5fe760e" = "luxe: build/values.wren" } { "e60cc790-e31c-46cd-b35f-1a8fef0e4c53" = "textures/env_lo/tex_tile_green_03.image.lx" } { "e65142ec-0325-4243-baec-942172121c64" = "luxe: type/scene.asset.wren" } + { "e668450e-bc5c-4697-9663-878c04979bfe" = "prototype/arena01.prototype/" } { "e669bee9-79ca-48da-b617-4554eb541edc" = "luxe: material_basis/sprite_pixelated.material_basis.lx" } { "e66c719b-c6c3-41f7-bc75-815a1a477e78" = "luxe: build/ast/wren.wren" } { "e6849174-3bd3-4d7e-8e00-b4a27ce4137f" = "luxe: pose/two_bone_ik.pose_node.wren" } { "e74126d5-03d4-476b-936a-39afc04e5107" = "luxe: templates/text.prototype/" } + { "e757f596-6ec4-4a97-9028-3694478b2094" = "prototype/" } { "e75a7dfd-fb6b-43dd-8f8d-97067812b4ef" = "luxe: assets.wren" } { "e79359ca-247c-49cc-96cf-240f35566e81" = "textures/env_lo/tex_wood_slats_01.image.lx" } + { "e7c1b5ea-5c5d-476f-9920-f2f3037967ca" = "prototype/arena01.prototype/" } { "e7e2b51a-8ca5-4832-9583-77526640f51f" = "textures/env_lo/tex_tile_03.png" } { "e824f78b-20e6-4366-b835-d941f7732fa1" = "textures/env_lo/tex_painted_darkgreen.png" } { "e8269533-e97b-418b-b18d-ef69210df62b" = "luxe: system/physics/sphere_collider3D.modifier.api.wren" } @@ -711,61 +956,89 @@ { "e8b0074a-6f80-487e-8cfb-2440fc220028" = "textures/env_lo/tex_metal_09.png" } { "e8c9e409-fbb5-4957-9011-6a3313126980" = "luxe: type/anim/material.anim_track.wren" } { "e8e675d7-5d53-42be-844b-c0eb19ce1358" = "luxe: system/physics/physics3D.modifier.api.wren" } + { "e8e7b9aa-c630-4771-9024-3714447ed2b1" = "maps/arena01_0_worldspawn.obj.assets/env_lo/tex_carpet_green.material.lx" } { "e8f9db34-b09c-4a44-9f43-875fc17cb29c" = "textures/env_lo/tex_brick_06.image.lx" } { "e931603c-ac19-4006-8823-c139602603f3" = "luxe: material_basis/" } { "e96515ea-b40d-4f10-ae38-024f54407ab7" = "textures/env_lo/tex_concrete_01.png" } { "e96c0392-234b-42a5-947e-bd34272024cb" = "luxe: material/font.material.lx" } + { "e97191eb-e3c2-419c-a3e7-6ea830a07f3d" = "maps/arena01_0_worldspawn.obj.assets/env_lo/tex_road_side_01.material.lx" } { "e98d5b45-0dfb-4c66-aacc-bf30e824db96" = "textures/env_lo/tex_wood_flooring_01.png" } { "eb0041fc-9f8a-4f08-8f3e-094fa3584c96" = "luxe: modifier/" } + { "eb224860-0aac-4660-a653-e5321cec3f07" = "maps/arena01_0_worldspawn.obj.assets/env_lo/tex_concrete_01.material.lx" } { "eb87064a-ebc7-457d-85f0-1aa19ef6758b" = "textures/env_lo/tex_wood_grain_05.png" } { "ebfa7313-6631-45d2-90d1-d262f27444e5" = "luxe: modules/solver.wren" } { "ec4ce257-e426-4be6-9673-a037792ceab7" = "textures/env_lo/tex_brick_09.png" } + { "ec589ce4-51f1-4e96-9f66-2dae219321cb" = "maps/arena01_0_worldspawn.obj.assets/env_lo/tex_road_side_01.material.lx" } + { "ed92e215-1db9-494d-bd14-d9fd7c229c57" = "maps/arena01.mtl" } { "edde3310-e1f3-49e7-b5e0-b9ce3f28c9c6" = "func_luxe: shaders.emsl" } + { "ee153dda-8d74-4cc9-82bf-53f7339bcfbc" = "prototype/arena01.prototype/" } + { "ee452bc8-bab9-4969-8e7d-2fa82097d695" = "maps/arena01_0_worldspawn.obj.assets/" } { "ee6285e3-5976-473c-91fa-20a10f9eabb8" = "luxe: material/solid.material.lx" } + { "ee62fe75-7891-4d6d-8738-afec554dba21" = "maps/arena01_0_worldspawn.mesh.lx" } + { "ee7ddbfc-99d8-42c1-a78c-7abd1970ecac" = "prototype/arena_01.prototype/prototype/" } + { "eeab8f48-bc05-4933-abf0-eeb99b7fd180" = "maps/arena_01_0_worldspawn.obj.assets/env_lo/" } { "eeef6d53-8844-4398-b3e7-0f0198b3ee50" = "luxe: render.wren" } - { "ef2f2cea-210d-44e6-97a8-90704c436aea" = "maps/arena_01_0_worldspawn.obj.assets/" } + { "ef019e23-5a8a-4691-be37-c99f07e6c592" = "maps/arena01_0_worldspawn_col.obj" } + { "ef2308fc-42e2-4bec-94f4-11bb18ef1a8d" = "prototype/arena01.prototype/arena01.prototype.lx" } { "ef5e17f6-a969-4257-92b8-6e59d9b7f1e9" = "textures/env_lo/tex_tile_08.png" } { "ef631f4d-e242-473f-8bf2-738aef13ad91" = "textures/env_lo/tex_prop_locker01.png.import" } { "efec2dd9-6cca-4f89-9db8-71175c48f13d" = "textures/env_lo/tex_tile_green_01.tres" } { "f0028ef4-01b0-4b66-ad2f-04ca8a91a236" = "luxe: ui/editor.panel.modifier.text.ui.lx" } + { "f0064874-b83f-4373-892b-a9b5db31c1c2" = "maps/arena_01_0_worldspawn_col.mesh.lx" } + { "f033d033-c617-48d7-9ec7-33b37cff8728" = "maps/arena01_0_worldspawn.obj.assets/special/" } { "f048f874-255c-4faa-9297-308ec1648320" = "textures/env_lo/tex_metal_midgray_03.png.import" } { "f099b84e-4f46-4b22-9c29-ea5b9e290251" = "textures/env_lo/tex_tile_tan_03.png" } { "f0df65cb-d3fb-490d-846b-ea26f8b98667" = "luxe: material_basis/pixel_font.material_basis.lx" } + { "f0ed311e-fb8e-4e47-bf22-336949146512" = "maps/arena01_0_worldspawn.obj.assets/" } + { "f12c5301-a27b-49a8-99e4-736f3616c990" = "maps/arena01_0_worldspawn.obj.assets/env_lo/tex_tile_tan_01.material.lx" } { "f1444e27-562c-4bfc-a5c5-d5eb6030adda" = "luxe: image/duplicate.svg" } { "f16e4a64-940a-4716-9cc8-7cbb3df8c12c" = "textures/env_lo/tex_road_plain_01.png" } { "f1bb4dcb-2449-44d4-941b-e3286f0ac0d9" = "luxe: build/atlases.wren" } + { "f1dc0f97-cc01-4e0d-9674-0980a71e11a7" = "maps/arena01_0_worldspawn_col.mesh.lx" } { "f260c6df-1de7-460c-a4c0-ab8e3f041ed2" = "func_luxe: presets/project.mesh_preset.wren" } { "f2804903-15d7-4212-aebd-1c21877cdbfb" = "prototype/" } { "f2fa87b3-8cf3-43c8-a731-0b5b00ad384c" = "game.wren" } + { "f33b24b0-6d89-4f80-a09c-b0448b0bd016" = "prototype/arena01.prototype/" } { "f34f63da-ee68-4558-9d32-150513b6fbda" = "textures/env_lo/tex_tile_09.png.import" } + { "f3907850-93b5-41bc-9e88-bdaa1f3ddb2b" = "prototype/arena01.prototype/arena01_0_worldspawn.entity.lx" } { "f3c645a2-92ee-4f11-ae22-0e5835cc1a7e" = "luxe: material/sprite.solid.material.lx" } + { "f3d89174-329e-4b0b-b7b1-19c7cb17363b" = "maps/arena_01_0_worldspawn.obj.assets/special/clip.material.lx" } { "f3e26d6e-6689-4f79-b677-e8313d84d291" = "textures/env_lo/tex_road_stairs_01.image.lx" } { "f40ee43a-9221-4fa1-8c78-91ae7be3c130" = "luxe: type/stage.asset.wren" } + { "f4299e69-e3b3-4965-8a35-58f078284a72" = "LICENSE" } { "f4382d3d-6de1-449a-9b5e-377526804ef4" = "textures/env_lo/tex_metal_midgray_01.png" } { "f43fda0a-20fb-420d-b18a-f0a1c27b68ed" = "luxe: image/modifier/modifier.svg" } { "f4c54092-1eda-4adf-a2a2-8855528015ad" = "textures/env_lo/tex_tile_green_03.png.import" } + { "f4f27b7f-426c-4126-903c-88aa218204ac" = "prototype/arena_01.prototype/arena_01.prototype.lx" } { "f5306854-d080-4fcf-8913-058a6b4ecca2" = "textures/env_lo/tex_metal_midgray_01.image.lx" } { "f543f20b-c74b-4dfa-845b-2af14b707afe" = "textures/env_lo/tex_metal_midgray_01.tres" } { "f5ce8dd7-3ae3-49e2-9762-e33425d19e07" = "luxe: world/states.wren" } - { "f5d942e8-59b5-4eec-a1e9-77f88ea95739" = "maps/arena_01_0_worldspawn.obj.assets/env_lo/tex_road_side_01.material.lx" } { "f5e1347d-c4dc-4a90-b6eb-c8a387fa8f79" = "luxe: system/physics/body3D.modifier.wren" } + { "f5f3502f-0e9d-43c0-bd70-981f17692b37" = "maps/arena01_0_worldspawn.obj.assets/special/clip.material.lx" } { "f6663667-59d2-4f63-85e5-bf290a01f669" = "luxe: build/scenes.wren" } { "f66e09d1-e649-47a0-9f54-b768978996ff" = "luxe: type/script.asset.wren" } { "f6e27f3a-da7d-4e90-a56c-173c75389372" = "luxe: build/skeletons.wren" } { "f6eb7e87-792e-4735-86d7-0096ac3a1958" = "luxe: ui/editor.panel.anim.transform.settings.ui.lx" } { "f6f2c83f-d655-43f6-bae8-e7e4fcc9613b" = "scene/arena01.scene/instance-VS3.instance/" } + { "f6f34ab4-6de9-4c81-ac50-171b31f7506e" = "prototype/arena_01.prototype/arena_01_0_worldspawn.entity.lx" } + { "f7230ba5-7657-41db-b122-53d26efa0191" = "scene/" } + { "f74790f6-acb9-4852-a37b-85b837539c1b" = "maps/arena01_0_worldspawn.obj.assets/env_lo/tex_carpet_green.material.lx" } { "f7ffdb7c-83f4-4273-b92b-5a732c88b2c7" = "luxe: image/modifier/anim.svg" } { "f82cf17c-39bd-4ed2-9a4b-247413135417" = "textures/env_lo/tex_painted_eggshell.png" } { "f95e2804-8cde-4227-a45e-641b2ec3a7d7" = "textures/env_lo/tex_tile_04.image.lx" } { "f9633aae-352d-4bcd-97a3-af037603b9e5" = "luxe: modifier/mesh.wren" } + { "f98af7ca-5963-4573-b6c3-5e22d829a514" = "maps/arena01.map" } { "f98af7ca-5963-4573-b6c3-5e22d829a514" = "maps/arena_01.map" } { "f9e66309-610d-4982-b5df-cd0bb2a072e0" = "textures/env_lo/tex_glass_01.tres" } { "fa137ab3-da29-437a-9dfd-7f87b1ab6ea0" = "func_luxe: core/surface_gatherer.wren" } + { "fa990a8c-a02d-4d83-b5a5-7bd17069cf42" = "maps/arena01_0_worldspawn.obj.assets/env_lo/tex_concrete_01.material.lx" } { "fac39060-d484-4269-83b7-e81d91866ab9" = "luxe: world/" } + { "fb0ce2f6-ca5a-41b0-b749-fc3cd1fdf6d2" = "maps/arena01_0_worldspawn_col.mesh.lx" } { "fb606a2a-2b1b-4f70-bf36-0f1b4284f186" = "luxe: world/world.wren" } { "fbdb00ff-30b6-437c-b32c-1616621442d9" = "textures/env_lo/tex_tile_tan_03.png.import" } { "fc150757-6536-4b94-971a-696ab7d7f5ab" = "luxe: ui/world.wren" } { "fc68b27b-561e-4002-87c3-1e9b7a80b444" = "luxe: modifier/sprite.wren" } + { "fc88d1f7-b439-4ae8-abc2-878799d4cf71" = "prototype/arena01.prototype/" } { "fcbf33f0-4e74-4763-8a52-bbd475dc44a4" = "func_luxe: texture_default/grid.wall.image.lx" } { "fd317e8b-fd5b-41d4-a20d-02be95fafe6e" = "luxe: audio.wren" } { "fd448298-5124-46f9-891d-812575930979" = "textures/env_lo/tex_metal_black_01.image.lx" } diff --git a/luxe.project/ignore b/luxe.project/ignore index 3188264..34df457 100644 --- a/luxe.project/ignore +++ b/luxe.project/ignore @@ -1,2 +1,4 @@ preview.png -QuenchTreeArboretum.code-workspace \ No newline at end of file +QuenchTreeArboretum.code-workspace +LICENSE +README.md \ No newline at end of file diff --git a/luxe.project/refs.lx b/luxe.project/refs.lx index 7076b2e..e3907cc 100644 --- a/luxe.project/refs.lx +++ b/luxe.project/refs.lx @@ -1,16 +1,4 @@ [ - { - references = [ - "f5d942e8-59b5-4eec-a1e9-77f88ea95739" - "67eb5fb0-6c76-44cd-a029-de89a3769dfa" - "524b1d81-e692-4a72-8b75-02f6f1e869cc" - "564f64c5-8a4b-461c-ae0c-e7ef84df2817" - "90464f06-fcdc-4327-83b2-e73651f7fd97" - "2ab8ff46-3921-47b8-8fe1-0af7a598428d" - "c6894c25-a77b-43ac-b097-5c3cd318ef70" - ] - uuid = "2349a371-3219-4ffb-a961-14923527c65d" - } { references = [ "7a3b8b49-6cd9-4029-b41e-2c6a9310cb96" @@ -23,6 +11,12 @@ ] uuid = "7076047a-c14f-4960-8ebc-5bad766cfd1a" } + { + references = [ + "c91295f6-f523-49de-b718-c56ecd1dcee0" + ] + uuid = "f1dc0f97-cc01-4e0d-9674-0980a71e11a7" + } { references = [ "a4a562f4-bea3-41e2-8001-80226dade944" @@ -37,9 +31,15 @@ } { references = [ - "880245b3-bd53-49fe-8197-e8392c141341" + "7fbee9fc-7689-4af6-b054-7442665e5d0f" + "2b9a0ad5-af90-426e-8c8b-756a6e559af7" + "d86ca23f-19a9-4512-b840-3b607cfdcb2e" + "e40a5074-39fd-4c82-954d-a171a255fa0c" + "09928909-d3ab-4184-93fd-66aff6059321" + "d7c64489-313f-403c-aebc-280c9c124e97" + "59604c9b-a411-481d-9898-ab106941c58c" ] - uuid = "cc459a79-33fe-4a0e-b619-0b528a2d7f6a" + uuid = "d84a7a8b-478f-48a3-b33a-d859a517465c" } { references = [ diff --git a/maps/arena_01.map b/maps/arena01.map similarity index 100% rename from maps/arena_01.map rename to maps/arena01.map diff --git a/maps/arena_01.map.meta.lx b/maps/arena01.map.meta.lx similarity index 100% rename from maps/arena_01.map.meta.lx rename to maps/arena01.map.meta.lx diff --git a/maps/arena_01.mtl b/maps/arena01.mtl similarity index 100% rename from maps/arena_01.mtl rename to maps/arena01.mtl diff --git a/maps/arena01.mtl.meta.lx b/maps/arena01.mtl.meta.lx new file mode 100644 index 0000000..48ba079 --- /dev/null +++ b/maps/arena01.mtl.meta.lx @@ -0,0 +1,2 @@ +tags = [] +uuid = "dbd29495-e216-4503-afb2-d547911c0097" diff --git a/maps/arena_01_0_worldspawn.mesh.lx b/maps/arena01_0_worldspawn.mesh.lx similarity index 63% rename from maps/arena_01_0_worldspawn.mesh.lx rename to maps/arena01_0_worldspawn.mesh.lx index 5ba39f2..c512787 100644 --- a/maps/arena_01_0_worldspawn.mesh.lx +++ b/maps/arena01_0_worldspawn.mesh.lx @@ -3,47 +3,47 @@ mesh = { { id = "vA1wUK" value = { - from = "maps/arena_01_0_worldspawn.obj" + from = "maps/arena01_0_worldspawn.obj" materials = [ { id = "vA1wUK" value = { - material = "maps/arena_01_0_worldspawn.obj.assets/env_lo/tex_brick_01" + material = "maps/arena01_0_worldspawn.obj.assets/env_lo/tex_brick_01" name = "env_lo/tex_brick_01" } // value } { id = "0y2Yy6" value = { - material = "maps/arena_01_0_worldspawn.obj.assets/env_lo/tex_concrete_01" + material = "maps/arena01_0_worldspawn.obj.assets/env_lo/tex_concrete_01" name = "env_lo/tex_concrete_01" } // value } { id = "1yEsdm" value = { - material = "maps/arena_01_0_worldspawn.obj.assets/env_lo/tex_tile_tan_01" + material = "maps/arena01_0_worldspawn.obj.assets/env_lo/tex_tile_tan_01" name = "env_lo/tex_tile_tan_01" } // value } { id = "6mGU7Z" value = { - material = "maps/arena_01_0_worldspawn.obj.assets/env_lo/tex_road_side_01" + material = "maps/arena01_0_worldspawn.obj.assets/env_lo/tex_road_side_01" name = "env_lo/tex_road_side_01" } // value } { id = "zUrDJR" value = { - material = "maps/arena_01_0_worldspawn.obj.assets/env_lo/tex_carpet_green" + material = "maps/arena01_0_worldspawn.obj.assets/env_lo/tex_carpet_green" name = "env_lo/tex_carpet_green" } // value } { id = "o0cfgC" value = { - material = "maps/arena_01_0_worldspawn.obj.assets/special/clip" + material = "maps/arena01_0_worldspawn.obj.assets/special/clip" name = "special/clip" } // value } diff --git a/maps/arena01_0_worldspawn.mesh.lx.meta.lx b/maps/arena01_0_worldspawn.mesh.lx.meta.lx new file mode 100644 index 0000000..57382ed --- /dev/null +++ b/maps/arena01_0_worldspawn.mesh.lx.meta.lx @@ -0,0 +1,2 @@ +tags = [] +uuid = "d84a7a8b-478f-48a3-b33a-d859a517465c" diff --git a/maps/arena_01_0_worldspawn.obj b/maps/arena01_0_worldspawn.obj similarity index 99% rename from maps/arena_01_0_worldspawn.obj rename to maps/arena01_0_worldspawn.obj index 59df512..f95032e 100644 --- a/maps/arena_01_0_worldspawn.obj +++ b/maps/arena01_0_worldspawn.obj @@ -1,4 +1,4 @@ -mtllib arena_01.mtl +mtllib arena01.mtl # vertices v 12.25 -4.001 -11 diff --git a/maps/arena01_0_worldspawn.obj.assets/env_lo/folder.meta.lx b/maps/arena01_0_worldspawn.obj.assets/env_lo/folder.meta.lx new file mode 100644 index 0000000..1d4a3a7 --- /dev/null +++ b/maps/arena01_0_worldspawn.obj.assets/env_lo/folder.meta.lx @@ -0,0 +1,2 @@ +tags = [] +uuid = "5af597c0-408a-4eb5-a51f-deb472a57a81" diff --git a/maps/arena_01_0_worldspawn.obj.assets/env_lo/tex_brick_01.material.lx b/maps/arena01_0_worldspawn.obj.assets/env_lo/tex_brick_01.material.lx similarity index 100% rename from maps/arena_01_0_worldspawn.obj.assets/env_lo/tex_brick_01.material.lx rename to maps/arena01_0_worldspawn.obj.assets/env_lo/tex_brick_01.material.lx diff --git a/maps/arena01_0_worldspawn.obj.assets/env_lo/tex_brick_01.material.lx.meta.lx b/maps/arena01_0_worldspawn.obj.assets/env_lo/tex_brick_01.material.lx.meta.lx new file mode 100644 index 0000000..dc3622f --- /dev/null +++ b/maps/arena01_0_worldspawn.obj.assets/env_lo/tex_brick_01.material.lx.meta.lx @@ -0,0 +1,2 @@ +tags = [] +uuid = "59604c9b-a411-481d-9898-ab106941c58c" diff --git a/maps/arena_01_0_worldspawn.obj.assets/env_lo/tex_carpet_green.material.lx b/maps/arena01_0_worldspawn.obj.assets/env_lo/tex_carpet_green.material.lx similarity index 100% rename from maps/arena_01_0_worldspawn.obj.assets/env_lo/tex_carpet_green.material.lx rename to maps/arena01_0_worldspawn.obj.assets/env_lo/tex_carpet_green.material.lx diff --git a/maps/arena01_0_worldspawn.obj.assets/env_lo/tex_carpet_green.material.lx.meta.lx b/maps/arena01_0_worldspawn.obj.assets/env_lo/tex_carpet_green.material.lx.meta.lx new file mode 100644 index 0000000..7b710c8 --- /dev/null +++ b/maps/arena01_0_worldspawn.obj.assets/env_lo/tex_carpet_green.material.lx.meta.lx @@ -0,0 +1,2 @@ +tags = [] +uuid = "2b9a0ad5-af90-426e-8c8b-756a6e559af7" diff --git a/maps/arena_01_0_worldspawn.obj.assets/env_lo/tex_concrete_01.material.lx b/maps/arena01_0_worldspawn.obj.assets/env_lo/tex_concrete_01.material.lx similarity index 100% rename from maps/arena_01_0_worldspawn.obj.assets/env_lo/tex_concrete_01.material.lx rename to maps/arena01_0_worldspawn.obj.assets/env_lo/tex_concrete_01.material.lx diff --git a/maps/arena01_0_worldspawn.obj.assets/env_lo/tex_concrete_01.material.lx.meta.lx b/maps/arena01_0_worldspawn.obj.assets/env_lo/tex_concrete_01.material.lx.meta.lx new file mode 100644 index 0000000..339a9a1 --- /dev/null +++ b/maps/arena01_0_worldspawn.obj.assets/env_lo/tex_concrete_01.material.lx.meta.lx @@ -0,0 +1,2 @@ +tags = [] +uuid = "d7c64489-313f-403c-aebc-280c9c124e97" diff --git a/maps/arena_01_0_worldspawn.obj.assets/env_lo/tex_road_side_01.material.lx b/maps/arena01_0_worldspawn.obj.assets/env_lo/tex_road_side_01.material.lx similarity index 100% rename from maps/arena_01_0_worldspawn.obj.assets/env_lo/tex_road_side_01.material.lx rename to maps/arena01_0_worldspawn.obj.assets/env_lo/tex_road_side_01.material.lx diff --git a/maps/arena01_0_worldspawn.obj.assets/env_lo/tex_road_side_01.material.lx.meta.lx b/maps/arena01_0_worldspawn.obj.assets/env_lo/tex_road_side_01.material.lx.meta.lx new file mode 100644 index 0000000..08e1345 --- /dev/null +++ b/maps/arena01_0_worldspawn.obj.assets/env_lo/tex_road_side_01.material.lx.meta.lx @@ -0,0 +1,2 @@ +tags = [] +uuid = "09928909-d3ab-4184-93fd-66aff6059321" diff --git a/maps/arena_01_0_worldspawn.obj.assets/env_lo/tex_tile_tan_01.material.lx b/maps/arena01_0_worldspawn.obj.assets/env_lo/tex_tile_tan_01.material.lx similarity index 100% rename from maps/arena_01_0_worldspawn.obj.assets/env_lo/tex_tile_tan_01.material.lx rename to maps/arena01_0_worldspawn.obj.assets/env_lo/tex_tile_tan_01.material.lx diff --git a/maps/arena01_0_worldspawn.obj.assets/env_lo/tex_tile_tan_01.material.lx.meta.lx b/maps/arena01_0_worldspawn.obj.assets/env_lo/tex_tile_tan_01.material.lx.meta.lx new file mode 100644 index 0000000..f95a06b --- /dev/null +++ b/maps/arena01_0_worldspawn.obj.assets/env_lo/tex_tile_tan_01.material.lx.meta.lx @@ -0,0 +1,2 @@ +tags = [] +uuid = "d86ca23f-19a9-4512-b840-3b607cfdcb2e" diff --git a/maps/arena01_0_worldspawn.obj.assets/folder.meta.lx b/maps/arena01_0_worldspawn.obj.assets/folder.meta.lx new file mode 100644 index 0000000..32dd056 --- /dev/null +++ b/maps/arena01_0_worldspawn.obj.assets/folder.meta.lx @@ -0,0 +1,2 @@ +tags = [] +uuid = "5f560df6-af63-436a-a163-1d2a558286d6" diff --git a/maps/arena_01_0_worldspawn.obj.assets/special/clip.material.lx b/maps/arena01_0_worldspawn.obj.assets/special/clip.material.lx similarity index 100% rename from maps/arena_01_0_worldspawn.obj.assets/special/clip.material.lx rename to maps/arena01_0_worldspawn.obj.assets/special/clip.material.lx diff --git a/maps/arena01_0_worldspawn.obj.assets/special/clip.material.lx.meta.lx b/maps/arena01_0_worldspawn.obj.assets/special/clip.material.lx.meta.lx new file mode 100644 index 0000000..5f20ff1 --- /dev/null +++ b/maps/arena01_0_worldspawn.obj.assets/special/clip.material.lx.meta.lx @@ -0,0 +1,2 @@ +tags = [] +uuid = "7fbee9fc-7689-4af6-b054-7442665e5d0f" diff --git a/maps/arena01_0_worldspawn.obj.assets/special/folder.meta.lx b/maps/arena01_0_worldspawn.obj.assets/special/folder.meta.lx new file mode 100644 index 0000000..139992b --- /dev/null +++ b/maps/arena01_0_worldspawn.obj.assets/special/folder.meta.lx @@ -0,0 +1,2 @@ +tags = [] +uuid = "7c852959-95da-4644-bace-7c8ada4aac4d" diff --git a/maps/arena01_0_worldspawn.obj.meta.lx b/maps/arena01_0_worldspawn.obj.meta.lx new file mode 100644 index 0000000..816e023 --- /dev/null +++ b/maps/arena01_0_worldspawn.obj.meta.lx @@ -0,0 +1,2 @@ +tags = [] +uuid = "e40a5074-39fd-4c82-954d-a171a255fa0c" diff --git a/maps/arena_01_0_worldspawn_col.mesh.lx b/maps/arena01_0_worldspawn_col.mesh.lx similarity index 73% rename from maps/arena_01_0_worldspawn_col.mesh.lx rename to maps/arena01_0_worldspawn_col.mesh.lx index 7c32eee..183688f 100644 --- a/maps/arena_01_0_worldspawn_col.mesh.lx +++ b/maps/arena01_0_worldspawn_col.mesh.lx @@ -3,7 +3,7 @@ mesh = { { id = "vA1wUK" value = { - from = "maps/arena_01_0_worldspawn_col.obj" + from = "maps/arena01_0_worldspawn_col.obj" materials = [] // materials } // value } diff --git a/maps/arena01_0_worldspawn_col.mesh.lx.meta.lx b/maps/arena01_0_worldspawn_col.mesh.lx.meta.lx new file mode 100644 index 0000000..97d830d --- /dev/null +++ b/maps/arena01_0_worldspawn_col.mesh.lx.meta.lx @@ -0,0 +1,2 @@ +tags = [] +uuid = "f1dc0f97-cc01-4e0d-9674-0980a71e11a7" diff --git a/maps/arena_01_0_worldspawn_col.obj b/maps/arena01_0_worldspawn_col.obj similarity index 100% rename from maps/arena_01_0_worldspawn_col.obj rename to maps/arena01_0_worldspawn_col.obj diff --git a/maps/arena01_0_worldspawn_col.obj.meta.lx b/maps/arena01_0_worldspawn_col.obj.meta.lx new file mode 100644 index 0000000..f25faf0 --- /dev/null +++ b/maps/arena01_0_worldspawn_col.obj.meta.lx @@ -0,0 +1,2 @@ +tags = [] +uuid = "c91295f6-f523-49de-b718-c56ecd1dcee0" diff --git a/maps/arena_01.mtl.meta.lx b/maps/arena_01.mtl.meta.lx deleted file mode 100644 index d9d7ce1..0000000 --- a/maps/arena_01.mtl.meta.lx +++ /dev/null @@ -1,2 +0,0 @@ -tags = [] -uuid = "b952d49b-62d2-4b8b-9a32-972b637b9482" diff --git a/maps/arena_01_0_worldspawn.mesh.lx.meta.lx b/maps/arena_01_0_worldspawn.mesh.lx.meta.lx deleted file mode 100644 index a4b0681..0000000 --- a/maps/arena_01_0_worldspawn.mesh.lx.meta.lx +++ /dev/null @@ -1,2 +0,0 @@ -tags = [] -uuid = "2349a371-3219-4ffb-a961-14923527c65d" diff --git a/maps/arena_01_0_worldspawn.obj.assets/env_lo/folder.meta.lx b/maps/arena_01_0_worldspawn.obj.assets/env_lo/folder.meta.lx deleted file mode 100644 index 9b93c8d..0000000 --- a/maps/arena_01_0_worldspawn.obj.assets/env_lo/folder.meta.lx +++ /dev/null @@ -1,2 +0,0 @@ -tags = [] -uuid = "3c7699d0-8063-4cbc-a9ef-d43a0006d3a2" diff --git a/maps/arena_01_0_worldspawn.obj.assets/env_lo/tex_brick_01.material.lx.meta.lx b/maps/arena_01_0_worldspawn.obj.assets/env_lo/tex_brick_01.material.lx.meta.lx deleted file mode 100644 index 374dc26..0000000 --- a/maps/arena_01_0_worldspawn.obj.assets/env_lo/tex_brick_01.material.lx.meta.lx +++ /dev/null @@ -1,2 +0,0 @@ -tags = [] -uuid = "2ab8ff46-3921-47b8-8fe1-0af7a598428d" diff --git a/maps/arena_01_0_worldspawn.obj.assets/env_lo/tex_carpet_green.material.lx.meta.lx b/maps/arena_01_0_worldspawn.obj.assets/env_lo/tex_carpet_green.material.lx.meta.lx deleted file mode 100644 index 4563445..0000000 --- a/maps/arena_01_0_worldspawn.obj.assets/env_lo/tex_carpet_green.material.lx.meta.lx +++ /dev/null @@ -1,2 +0,0 @@ -tags = [] -uuid = "564f64c5-8a4b-461c-ae0c-e7ef84df2817" diff --git a/maps/arena_01_0_worldspawn.obj.assets/env_lo/tex_concrete_01.material.lx.meta.lx b/maps/arena_01_0_worldspawn.obj.assets/env_lo/tex_concrete_01.material.lx.meta.lx deleted file mode 100644 index 3cf3fd4..0000000 --- a/maps/arena_01_0_worldspawn.obj.assets/env_lo/tex_concrete_01.material.lx.meta.lx +++ /dev/null @@ -1,2 +0,0 @@ -tags = [] -uuid = "c6894c25-a77b-43ac-b097-5c3cd318ef70" diff --git a/maps/arena_01_0_worldspawn.obj.assets/env_lo/tex_road_side_01.material.lx.meta.lx b/maps/arena_01_0_worldspawn.obj.assets/env_lo/tex_road_side_01.material.lx.meta.lx deleted file mode 100644 index c988284..0000000 --- a/maps/arena_01_0_worldspawn.obj.assets/env_lo/tex_road_side_01.material.lx.meta.lx +++ /dev/null @@ -1,2 +0,0 @@ -tags = [] -uuid = "f5d942e8-59b5-4eec-a1e9-77f88ea95739" diff --git a/maps/arena_01_0_worldspawn.obj.assets/env_lo/tex_tile_tan_01.material.lx.meta.lx b/maps/arena_01_0_worldspawn.obj.assets/env_lo/tex_tile_tan_01.material.lx.meta.lx deleted file mode 100644 index 6b5810f..0000000 --- a/maps/arena_01_0_worldspawn.obj.assets/env_lo/tex_tile_tan_01.material.lx.meta.lx +++ /dev/null @@ -1,2 +0,0 @@ -tags = [] -uuid = "524b1d81-e692-4a72-8b75-02f6f1e869cc" diff --git a/maps/arena_01_0_worldspawn.obj.assets/folder.meta.lx b/maps/arena_01_0_worldspawn.obj.assets/folder.meta.lx deleted file mode 100644 index 7bc7fa9..0000000 --- a/maps/arena_01_0_worldspawn.obj.assets/folder.meta.lx +++ /dev/null @@ -1,2 +0,0 @@ -tags = [] -uuid = "ef2f2cea-210d-44e6-97a8-90704c436aea" diff --git a/maps/arena_01_0_worldspawn.obj.assets/special/clip.material.lx.meta.lx b/maps/arena_01_0_worldspawn.obj.assets/special/clip.material.lx.meta.lx deleted file mode 100644 index db2e63e..0000000 --- a/maps/arena_01_0_worldspawn.obj.assets/special/clip.material.lx.meta.lx +++ /dev/null @@ -1,2 +0,0 @@ -tags = [] -uuid = "90464f06-fcdc-4327-83b2-e73651f7fd97" diff --git a/maps/arena_01_0_worldspawn.obj.assets/special/folder.meta.lx b/maps/arena_01_0_worldspawn.obj.assets/special/folder.meta.lx deleted file mode 100644 index 09b35fe..0000000 --- a/maps/arena_01_0_worldspawn.obj.assets/special/folder.meta.lx +++ /dev/null @@ -1,2 +0,0 @@ -tags = [] -uuid = "bd9930da-7fc5-4c5f-9f38-0a1e3867fa0a" diff --git a/maps/arena_01_0_worldspawn.obj.meta.lx b/maps/arena_01_0_worldspawn.obj.meta.lx deleted file mode 100644 index be4505f..0000000 --- a/maps/arena_01_0_worldspawn.obj.meta.lx +++ /dev/null @@ -1,2 +0,0 @@ -tags = [] -uuid = "67eb5fb0-6c76-44cd-a029-de89a3769dfa" diff --git a/maps/arena_01_0_worldspawn_col.mesh.lx.meta.lx b/maps/arena_01_0_worldspawn_col.mesh.lx.meta.lx deleted file mode 100644 index fb70479..0000000 --- a/maps/arena_01_0_worldspawn_col.mesh.lx.meta.lx +++ /dev/null @@ -1,2 +0,0 @@ -tags = [] -uuid = "cc459a79-33fe-4a0e-b619-0b528a2d7f6a" diff --git a/maps/arena_01_0_worldspawn_col.obj.meta.lx b/maps/arena_01_0_worldspawn_col.obj.meta.lx deleted file mode 100644 index 7eef820..0000000 --- a/maps/arena_01_0_worldspawn_col.obj.meta.lx +++ /dev/null @@ -1,2 +0,0 @@ -tags = [] -uuid = "880245b3-bd53-49fe-8197-e8392c141341" diff --git a/outline/settings.settings.lx b/outline/settings.settings.lx index 66b317d..407079b 100644 --- a/outline/settings.settings.lx +++ b/outline/settings.settings.lx @@ -1,4 +1,4 @@ -engine.runtime.log = "verbose" +engine.runtime.log = "debug" engine = { input.entry = "outline/inputs" diff --git a/prototype/arena_01.prototype/arena_01.prototype.lx b/prototype/arena01.prototype/arena01.prototype.lx similarity index 57% rename from prototype/arena_01.prototype/arena_01.prototype.lx rename to prototype/arena01.prototype/arena01.prototype.lx index b778a66..b5e19c3 100644 --- a/prototype/arena_01.prototype/arena_01.prototype.lx +++ b/prototype/arena01.prototype/arena01.prototype.lx @@ -4,6 +4,6 @@ prototype = { type = "luxe: system/transform.modifier" } ] // modifiers - name = "prototype/arena_01.prototype" - uuid = "1b511b75-2fa1-468c-ad49-4062b5bd8cd3" + name = "prototype/arena01" + uuid = "0eeee352-24a7-42f3-ab39-87a3438e3bd1" } // prototype diff --git a/prototype/arena01.prototype/arena01.prototype.lx.meta.lx b/prototype/arena01.prototype/arena01.prototype.lx.meta.lx new file mode 100644 index 0000000..f66c646 --- /dev/null +++ b/prototype/arena01.prototype/arena01.prototype.lx.meta.lx @@ -0,0 +1,2 @@ +tags = [] +uuid = "7b274629-b9e2-4ba1-95a2-eea6af2bb071" diff --git a/prototype/arena_01.prototype/arena_01_0_worldspawn.entity.lx b/prototype/arena01.prototype/arena01_0_worldspawn.entity.lx similarity index 52% rename from prototype/arena_01.prototype/arena_01_0_worldspawn.entity.lx rename to prototype/arena01.prototype/arena01_0_worldspawn.entity.lx index c2f2648..dce8ea8 100644 --- a/prototype/arena_01.prototype/arena_01_0_worldspawn.entity.lx +++ b/prototype/arena01.prototype/arena01_0_worldspawn.entity.lx @@ -6,14 +6,20 @@ entity = { } { material = "func_luxe: texture_default/textured" - mesh = "maps/arena_01_0_worldspawn" + mesh = "maps/arena01_0_worldspawn" type = "luxe: system/mesh.modifier" } { - mesh = "maps/arena_01_0_worldspawn_col" + type = "luxe: system/physics/body3D.modifier" + } + { + body = [ + "b79fbb50-419c-474b-8278-563238ca20fe" + ] // body + mesh = "maps/arena01_0_worldspawn_col" type = "luxe: system/physics/mesh_collider3D.modifier" } ] // modifiers - name = "arena_01_0_worldspawn" - uuid = "fd62e0d1-2695-4001-a0be-4333c8e80abe" + name = "arena01_0_worldspawn" + uuid = "b79fbb50-419c-474b-8278-563238ca20fe" } // entity diff --git a/prototype/arena01.prototype/arena01_0_worldspawn.entity.lx.meta.lx b/prototype/arena01.prototype/arena01_0_worldspawn.entity.lx.meta.lx new file mode 100644 index 0000000..c79315a --- /dev/null +++ b/prototype/arena01.prototype/arena01_0_worldspawn.entity.lx.meta.lx @@ -0,0 +1,2 @@ +tags = [] +uuid = "55c8fea7-2038-4a48-b7ee-8ca6adfba26b" diff --git a/prototype/arena01.prototype/folder.meta.lx b/prototype/arena01.prototype/folder.meta.lx new file mode 100644 index 0000000..4dcf03f --- /dev/null +++ b/prototype/arena01.prototype/folder.meta.lx @@ -0,0 +1,2 @@ +tags = [] +uuid = "e668450e-bc5c-4697-9663-878c04979bfe" diff --git a/prototype/arena_01.prototype/arena_01.prototype.lx.meta.lx b/prototype/arena_01.prototype/arena_01.prototype.lx.meta.lx deleted file mode 100644 index 5c5bdd1..0000000 --- a/prototype/arena_01.prototype/arena_01.prototype.lx.meta.lx +++ /dev/null @@ -1,2 +0,0 @@ -tags = [] -uuid = "7e87a7fd-471d-466c-87a1-04fd105fa077" diff --git a/prototype/arena_01.prototype/arena_01_0_worldspawn.entity.lx.meta.lx b/prototype/arena_01.prototype/arena_01_0_worldspawn.entity.lx.meta.lx deleted file mode 100644 index 11d3b69..0000000 --- a/prototype/arena_01.prototype/arena_01_0_worldspawn.entity.lx.meta.lx +++ /dev/null @@ -1,2 +0,0 @@ -tags = [] -uuid = "98954e59-c500-4013-8283-1ade4ae19e79" diff --git a/prototype/arena_01.prototype/folder.meta.lx b/prototype/arena_01.prototype/folder.meta.lx deleted file mode 100644 index e427f39..0000000 --- a/prototype/arena_01.prototype/folder.meta.lx +++ /dev/null @@ -1,2 +0,0 @@ -tags = [] -uuid = "1c1123e8-7812-43f0-aecd-12dd75761b66" diff --git a/prototype/folder.meta.lx b/prototype/folder.meta.lx index 5809928..dd8c5e2 100644 --- a/prototype/folder.meta.lx +++ b/prototype/folder.meta.lx @@ -1,2 +1,2 @@ tags = [] -uuid = "f2804903-15d7-4212-aebd-1c21877cdbfb" +uuid = "6e23f88d-f5e8-43c2-a5e4-037f7e57ac1d" diff --git a/scene/arena01.scene/arena01.scene.lx b/scene/arena01.scene/arena01.scene.lx deleted file mode 100644 index 03db9b2..0000000 --- a/scene/arena01.scene/arena01.scene.lx +++ /dev/null @@ -1,9 +0,0 @@ -scene = { - modifiers = [ - { - type = "luxe: system/transform.modifier" - } - ] // modifiers - name = "scene/arena01" - uuid = "81d643c9-6abd-4aeb-9242-d667f7834ba0" -} // scene diff --git a/scene/arena01.scene/arena01.scene.lx.meta.lx b/scene/arena01.scene/arena01.scene.lx.meta.lx deleted file mode 100644 index 94d0308..0000000 --- a/scene/arena01.scene/arena01.scene.lx.meta.lx +++ /dev/null @@ -1,2 +0,0 @@ -tags = [] -uuid = "786f4a6d-9e78-4e64-97d7-e7063f2e810f" diff --git a/scene/arena01.scene/entity.oeE.entity.lx b/scene/arena01.scene/entity.oeE.entity.lx deleted file mode 100644 index 0d9a471..0000000 --- a/scene/arena01.scene/entity.oeE.entity.lx +++ /dev/null @@ -1,9 +0,0 @@ -entity = { - modifiers = [ - { - type = "luxe: system/physics/box_collider3D.modifier" - } - ] // modifiers - name = "entity.oeE" - uuid = "2dd6b32a-a178-4d95-8e82-c1b77fbd87a2" -} // entity diff --git a/scene/arena01.scene/entity.oeE.entity.lx.meta.lx b/scene/arena01.scene/entity.oeE.entity.lx.meta.lx deleted file mode 100644 index 404e70e..0000000 --- a/scene/arena01.scene/entity.oeE.entity.lx.meta.lx +++ /dev/null @@ -1,2 +0,0 @@ -tags = [] -uuid = "a5612f24-0889-4c31-9a1e-b898a398d068" diff --git a/scene/arena01.scene/folder.meta.lx b/scene/arena01.scene/folder.meta.lx deleted file mode 100644 index 0d0c474..0000000 --- a/scene/arena01.scene/folder.meta.lx +++ /dev/null @@ -1,2 +0,0 @@ -tags = [] -uuid = "906bfe23-2ed4-4e7d-9598-ffde79a2d039" diff --git a/scene/arena01.scene/instance-VS3.instance/arena_01_0_worldspawn.override.lx b/scene/arena01.scene/instance-VS3.instance/arena_01_0_worldspawn.override.lx deleted file mode 100644 index 9188734..0000000 --- a/scene/arena01.scene/instance-VS3.instance/arena_01_0_worldspawn.override.lx +++ /dev/null @@ -1,16 +0,0 @@ -override = { - address = [ - "a4c587ca-2f3d-4716-95dc-c12ce8b6829c" - "fd62e0d1-2695-4001-a0be-4333c8e80abe" - ] // address - modifiers = [ - { - link = [ - "a4c587ca-2f3d-4716-95dc-c12ce8b6829c" - "1b511b75-2fa1-468c-ad49-4062b5bd8cd3" - ] // link - pos = [0.25 4.00098 -1] // pos - type = "luxe: system/transform.modifier" - } - ] // modifiers -} // override diff --git a/scene/arena01.scene/instance-VS3.instance/arena_01_0_worldspawn.override.lx.meta.lx b/scene/arena01.scene/instance-VS3.instance/arena_01_0_worldspawn.override.lx.meta.lx deleted file mode 100644 index 7ca0986..0000000 --- a/scene/arena01.scene/instance-VS3.instance/arena_01_0_worldspawn.override.lx.meta.lx +++ /dev/null @@ -1,2 +0,0 @@ -tags = [] -uuid = "5ef6b3fd-980e-4113-bac2-789aae11415d" diff --git a/scene/arena01.scene/instance-VS3.instance/folder.meta.lx b/scene/arena01.scene/instance-VS3.instance/folder.meta.lx deleted file mode 100644 index 447de44..0000000 --- a/scene/arena01.scene/instance-VS3.instance/folder.meta.lx +++ /dev/null @@ -1,2 +0,0 @@ -tags = [] -uuid = "f6f2c83f-d655-43f6-bae8-e7e4fcc9613b" diff --git a/scene/arena01.scene/instance-VS3.instance/instance.entity.lx b/scene/arena01.scene/instance-VS3.instance/instance.entity.lx deleted file mode 100644 index ad2bf31..0000000 --- a/scene/arena01.scene/instance-VS3.instance/instance.entity.lx +++ /dev/null @@ -1,5 +0,0 @@ -entity = { - name = "instance-VS3" - source = "prototype/arena_01" - uuid = "a4c587ca-2f3d-4716-95dc-c12ce8b6829c" -} // entity diff --git a/scene/arena01.scene/instance-VS3.instance/instance.entity.lx.meta.lx b/scene/arena01.scene/instance-VS3.instance/instance.entity.lx.meta.lx deleted file mode 100644 index 777ce52..0000000 --- a/scene/arena01.scene/instance-VS3.instance/instance.entity.lx.meta.lx +++ /dev/null @@ -1,2 +0,0 @@ -tags = [] -uuid = "a592c43e-a9bf-4f99-bc35-c9473b11674d" diff --git a/scene/arena01.scene/instance-VS3.instance/instance.override.lx b/scene/arena01.scene/instance-VS3.instance/instance.override.lx deleted file mode 100644 index d6e87c5..0000000 --- a/scene/arena01.scene/instance-VS3.instance/instance.override.lx +++ /dev/null @@ -1,14 +0,0 @@ -override = { - address = [ - "a4c587ca-2f3d-4716-95dc-c12ce8b6829c" - "1b511b75-2fa1-468c-ad49-4062b5bd8cd3" - ] // address - modifiers = [ - { - link = [ - "81d643c9-6abd-4aeb-9242-d667f7834ba0" - ] // link - type = "luxe: system/transform.modifier" - } - ] // modifiers -} // override diff --git a/scene/arena01.scene/instance-VS3.instance/instance.override.lx.meta.lx b/scene/arena01.scene/instance-VS3.instance/instance.override.lx.meta.lx deleted file mode 100644 index daa29a9..0000000 --- a/scene/arena01.scene/instance-VS3.instance/instance.override.lx.meta.lx +++ /dev/null @@ -1,2 +0,0 @@ -tags = [] -uuid = "c1bf4901-1ed7-4678-833b-9d4163dba109" diff --git a/scene/folder.meta.lx b/scene/folder.meta.lx deleted file mode 100644 index f8d8740..0000000 --- a/scene/folder.meta.lx +++ /dev/null @@ -1,2 +0,0 @@ -tags = [] -uuid = "12ea7b67-090d-4e66-a81f-a2a7b1e0e628"