├── .VSCodeCounter ├── details.md ├── results.csv ├── results.md └── results.txt ├── .gitignore ├── .vscode └── launch.json ├── Cargo.lock ├── Cargo.toml ├── LICENSE ├── NFRenderDoc-Release.cap ├── README.md ├── bengine ├── Cargo.toml └── src │ ├── assets │ ├── float_buffer.rs │ ├── layouts │ │ ├── mod.rs │ │ ├── pipelines.rs │ │ ├── texture_bg.rs │ │ └── texture_bg_layout.rs │ ├── mod.rs │ ├── shaders │ │ ├── loader.rs │ │ └── mod.rs │ └── textures │ │ ├── depth_texture.rs │ │ ├── mod.rs │ │ └── texture_loader.rs │ ├── core │ ├── main_loop.rs │ └── mod.rs │ ├── game.rs │ ├── helpers │ ├── background_quad.rs │ ├── loaders.rs │ ├── mod.rs │ ├── quad_tex.frag.spv │ └── quad_tex.vert.spv │ ├── imgui_wgpu │ ├── imgui.frag.spv │ ├── imgui.vert.spv │ └── mod.rs │ ├── lib.rs │ ├── nf │ ├── mod.rs │ └── palette.rs │ └── render_core │ ├── fontawesome-webfont.ttf │ ├── init.rs │ ├── mod.rs │ └── render_context │ ├── init.rs │ └── mod.rs ├── nox_components ├── Cargo.toml └── src │ ├── field_of_view.rs │ ├── gamesys │ ├── attributes.rs │ ├── health.rs │ ├── initiative.rs │ ├── mod.rs │ └── skills.rs │ ├── identity.rs │ ├── items │ ├── blueprint.rs │ ├── claimed.rs │ ├── hauling.rs │ ├── material.rs │ ├── mod.rs │ ├── reaction_job.rs │ ├── storage.rs │ └── tool.rs │ ├── lib.rs │ ├── plants │ ├── mod.rs │ ├── tree.rs │ └── vegetation.rs │ ├── render │ ├── camera.rs │ ├── composite_render.rs │ ├── light.rs │ ├── mod.rs │ ├── objmodel.rs │ ├── tint.rs │ └── voxel_model.rs │ ├── serialize.rs │ ├── spatial │ ├── construction.rs │ ├── mining.rs │ ├── mod.rs │ └── position.rs │ ├── spawner │ ├── building.rs │ ├── clothing.rs │ ├── items.rs │ ├── mod.rs │ └── plant.rs │ ├── species.rs │ ├── tags │ ├── mod.rs │ └── orders.rs │ ├── temporal │ ├── calendar.rs │ ├── mod.rs │ ├── myturn.rs │ └── work_schedule.rs │ └── text │ ├── description.rs │ ├── mod.rs │ ├── name.rs │ └── tagline.rs ├── nox_planet ├── Cargo.toml └── src │ ├── biome.rs │ ├── block.rs │ ├── builder │ ├── biomes.rs │ ├── mod.rs │ ├── noise_helper.rs │ ├── planet_categories.rs │ ├── planet_noise.rs │ └── rivers.rs │ ├── groundz.rs │ ├── lib.rs │ ├── pathfinding │ └── mod.rs │ ├── planet.rs │ ├── planet_render.rs │ ├── region │ ├── builder │ │ ├── beaches.rs │ │ ├── buildings.rs │ │ ├── debris.rs │ │ ├── flags.rs │ │ ├── game_components.rs │ │ ├── heightmap.rs │ │ ├── map_components.rs │ │ ├── mod.rs │ │ ├── plants.rs │ │ ├── primitive.rs │ │ ├── ramping.rs │ │ ├── settlers.rs │ │ ├── strata.rs │ │ ├── trees.rs │ │ └── water_features.rs │ ├── construction_map.rs │ ├── lumber_map.rs │ ├── mining_map.rs │ ├── mod.rs │ └── tiletype.rs │ ├── rex.rs │ ├── river.rs │ ├── savedgame.rs │ ├── spawner.rs │ ├── sphere.rs │ └── worldgen_render.rs ├── nox_raws ├── Cargo.toml └── src │ ├── blocktype.rs │ ├── formats │ ├── biomes.rs │ ├── buildings.rs │ ├── bundle.rs │ ├── clothing.rs │ ├── items.rs │ ├── materials.rs │ ├── mod.rs │ ├── names.rs │ ├── plants.rs │ ├── professions.rs │ ├── reactions.rs │ ├── species.rs │ ├── vox.rs │ └── wavefront.rs │ ├── lib.rs │ └── material_map.rs ├── nox_spatial ├── Cargo.toml └── src │ ├── indices.rs │ └── lib.rs ├── nox_utils ├── Cargo.toml └── src │ ├── attrmods.rs │ ├── cube.rs │ ├── floor.rs │ ├── frustrum.rs │ ├── indices.rs │ ├── lib.rs │ ├── ramps.rs │ └── region.rs ├── resources ├── cursors │ ├── base_cursor.png │ ├── bridge_cursor.png │ ├── channel_cursor.png │ ├── chop_cursor.png │ ├── dig_cursor.png │ ├── downstairs_cursor.png │ ├── farm_cursor.png │ ├── floor_cursor.png │ ├── guard_cursor.png │ ├── ramp_cursor.png │ ├── tree_cursor.png │ ├── updownstairs_cursor.png │ ├── upstairs_cursor.png │ └── wall_cursor.png ├── images │ ├── background_image.png │ └── game_logo.png ├── metal-template.jpg ├── obj │ ├── Low_Poly_Forest_treeBlob01.obj │ ├── Low_Poly_Forest_treeBlob02.obj │ ├── Low_Poly_Forest_treeBlob03.obj │ ├── Low_Poly_Forest_treeTall01.obj │ ├── Low_Poly_Forest_treeTall02.obj │ ├── Low_Poly_Forest_treeTall03.obj │ └── Low_Poly_Forest_treeTall04.obj ├── raws │ ├── biome_bundle.ron │ ├── clothing_bundle.ron │ ├── first_names_female.txt │ ├── first_names_male.txt │ ├── index.txt │ ├── last_names.txt │ ├── mats │ │ ├── igneous.ron │ │ ├── ore.ron │ │ ├── sand.ron │ │ ├── sediment.ron │ │ ├── soil.ron │ │ ├── synthetic.ron │ │ └── wood.ron │ ├── plants_bundle.ron │ ├── professions_bundle.ron │ ├── raw_materials │ │ ├── ash.ron │ │ ├── block.ron │ │ ├── charcoal.ron │ │ ├── coal.ron │ │ ├── ore.ron │ │ ├── stone_boulder.ron │ │ └── woodlogs.ron │ ├── shipboard │ │ ├── battery.ron │ │ ├── cordex.ron │ │ ├── cryo_bed.ron │ │ ├── fake_camp_fire.ron │ │ ├── personal_survival_shelter.ron │ │ ├── rtg.ron │ │ ├── ship_defense_turret.ron │ │ ├── ship_lamp.ron │ │ ├── small_replicator.ron │ │ ├── solar_panel.ron │ │ └── storage_locker.ron │ ├── species_bundle.ron │ ├── tools │ │ ├── fire_axe.ron │ │ ├── hoe.ron │ │ └── pickaxe.ron │ ├── trees.ron │ ├── vox_bundle.ron │ └── workshops │ │ ├── charcoal_hut.ron │ │ ├── sawmill.ron │ │ ├── smelter.ron │ │ └── stonecutter.ron ├── rex │ └── spaceship.xp ├── shaders │ ├── compile.bat │ ├── cursors.frag │ ├── cursors.vert │ ├── gbuffer_test.frag │ ├── gbuffer_test.vert │ ├── planetgen.frag │ ├── planetgen.frag.spv │ ├── planetgen.vert │ ├── planetgen.vert.spv │ ├── regionblocks.frag │ ├── regionblocks.vert │ ├── shader.frag │ ├── shader.vert │ ├── sunlight.frag │ ├── sunlight.vert │ ├── voxmod.frag │ └── voxmod.vert ├── terrain │ ├── cobbles-n.png │ ├── cobbles.png │ ├── drydiirt.png │ ├── drydirt-n.png │ ├── drydirt.png │ ├── granite-n.png │ ├── granite.png │ ├── hidden-n.png │ ├── hidden.png │ ├── limestone-n.png │ ├── limestone.png │ ├── metalfloor-n.png │ ├── metalfloor.png │ ├── plasteeltile-n.png │ ├── plasteeltile.png │ ├── titanium-n.png │ └── titanium.png └── vox │ ├── ant.vox │ ├── armadillo.vox │ ├── arrow.vox │ ├── atlatl.vox │ ├── axeblade.vox │ ├── badger.vox │ ├── battery.vox │ ├── bed.vox │ ├── blades-extended.vox │ ├── blades-retracted.vox │ ├── blight-ao.jpg │ ├── block.vox │ ├── bone.vox │ ├── bonecarver.vox │ ├── boulder.vox │ ├── bow.vox │ ├── butcher.vox │ ├── cabinet.vox │ ├── cage.vox │ ├── campfire-fake.vox │ ├── carpenter.vox │ ├── carpenter_intermediate.vox │ ├── chair.vox │ ├── charcoal.vox │ ├── charcoal_hut.vox │ ├── chemist.vox │ ├── circuit.vox │ ├── cloth.vox │ ├── clothes_bathrobe.vox │ ├── clothes_batman_hat.vox │ ├── clothes_boots.vox │ ├── clothes_britches_simple.vox │ ├── clothes_cap_simple.vox │ ├── clothes_cargopants.vox │ ├── clothes_cat_ears.vox │ ├── clothes_formal_shirt.vox │ ├── clothes_hawaiian_shorts.vox │ ├── clothes_longskirt.vox │ ├── clothes_miniskirt.vox │ ├── clothes_police_hat.vox │ ├── clothes_shoes.vox │ ├── clothes_simple_tunic.vox │ ├── clothes_spandex_pants.vox │ ├── clothes_spandex_shirt.vox │ ├── clothes_sports_shirt.vox │ ├── clothes_tiara.vox │ ├── clothes_tshirt.vox │ ├── club.vox │ ├── club_spiked.vox │ ├── coal.vox │ ├── cordex.vox │ ├── corpse.vox │ ├── crate-fakefire.vox │ ├── crate-tent.vox │ ├── crate.vox │ ├── crossbow.vox │ ├── cryobed32.vox │ ├── daisy.vox │ ├── deer.vox │ ├── door_closed.vox │ ├── door_ground.vox │ ├── door_open.vox │ ├── dung.vox │ ├── dung_heap.vox │ ├── energydoor-closed.vox │ ├── energydoor-open.vox │ ├── float_gauge.vox │ ├── floodgate_closed.vox │ ├── floodgate_ground.vox │ ├── floodgate_open.vox │ ├── floor.vox │ ├── floorlight.vox │ ├── foodplate.vox │ ├── forge.vox │ ├── gate_and.vox │ ├── gate_nand.vox │ ├── gate_nor.vox │ ├── gate_not.vox │ ├── gate_or.vox │ ├── gate_xor.vox │ ├── glass_furnace.vox │ ├── grass.vox │ ├── ground_helmet.vox │ ├── ground_pants.vox │ ├── ground_shirt.vox │ ├── ground_shoes.vox │ ├── hammer.vox │ ├── hay.vox │ ├── heather.vox │ ├── hide.vox │ ├── hoe.vox │ ├── hoe_held.vox │ ├── horse.vox │ ├── kiln.vox │ ├── knife.vox │ ├── lathe.vox │ ├── leatherworker.vox │ ├── lever-off.vox │ ├── lever-on.vox │ ├── liquid.vox │ ├── loom.vox │ ├── mason.vox │ ├── meat.vox │ ├── mechanic.vox │ ├── mechanism.vox │ ├── nitrogen_extractor.vox │ ├── oil.vox │ ├── ore.vox │ ├── oscillator.vox │ ├── paper.vox │ ├── person_base.vox │ ├── person_hair_balding.vox │ ├── person_hair_long.vox │ ├── person_hair_mohawk.vox │ ├── person_hair_pigtails.vox │ ├── person_hair_short.vox │ ├── person_hair_triangle.vox │ ├── pointystick.vox │ ├── powder.vox │ ├── pressureplate.vox │ ├── proximity_sensor.vox │ ├── raised_flower_bed.vox │ ├── ramp.vox │ ├── rampnew.vox │ ├── refinery.vox │ ├── replicator_small.vox │ ├── rtg.vox │ ├── sawmill.vox │ ├── seed.vox │ ├── silicon_refinery.vox │ ├── simpleaxe.vox │ ├── simpleaxe_held.vox │ ├── simplepick.vox │ ├── simplepick_held.vox │ ├── skull.vox │ ├── smelter.vox │ ├── solar_panel.vox │ ├── spikes-extended.vox │ ├── spikes-retracted.vox │ ├── stairs-down.vox │ ├── stairs-up.vox │ ├── stairs-updown.vox │ ├── still.vox │ ├── stonecutter.vox │ ├── stonefall.vox │ ├── support.vox │ ├── sword.vox │ ├── table.vox │ ├── tailor.vox │ ├── tanner.vox │ ├── tent.vox │ ├── thread.vox │ ├── tree.vox │ ├── turret.vox │ ├── veggie.vox │ ├── wall.vox │ ├── wastewood.vox │ └── woodlogs.vox └── src ├── main.rs └── modes ├── loader ├── asset_loader.rs └── mod.rs ├── main_menu.rs ├── mod.rs ├── playgame ├── loadstate.rs ├── messaging │ ├── apply │ │ ├── gamesystem.rs │ │ ├── job_designations.rs │ │ ├── lumber.rs │ │ ├── mining.rs │ │ ├── mod.rs │ │ └── pathing.rs │ ├── job_step.rs │ ├── mod.rs │ └── queue_backend.rs ├── mod.rs ├── play.rs ├── render │ ├── chunks │ │ ├── chunk.rs │ │ ├── chunks.rs │ │ ├── chunktype.rs │ │ ├── constants.rs │ │ ├── greedy.rs │ │ └── mod.rs │ ├── gbuffer.rs │ ├── mod.rs │ ├── models │ │ └── mod.rs │ ├── passes │ │ ├── cursors_pass │ │ │ ├── cubes.rs │ │ │ ├── cursors.frag │ │ │ ├── cursors.frag.spv │ │ │ ├── cursors.vert │ │ │ ├── cursors.vert.spv │ │ │ └── mod.rs │ │ ├── grass_pass │ │ │ ├── grass.frag │ │ │ ├── grass.frag.spv │ │ │ ├── grass.png │ │ │ ├── grass.vert │ │ │ ├── grass.vert.spv │ │ │ └── mod.rs │ │ ├── lighting_pass │ │ │ ├── light_uniforms.rs │ │ │ ├── lighting.frag │ │ │ ├── lighting.frag.spv │ │ │ ├── lighting.vert │ │ │ ├── lighting.vert.spv │ │ │ ├── mod.rs │ │ │ └── terrain_lights.rs │ │ ├── mod.rs │ │ ├── model_pass │ │ │ ├── mod.rs │ │ │ ├── models.frag │ │ │ ├── models.frag.spv │ │ │ ├── models.vert │ │ │ └── models.vert.spv │ │ ├── terrain_pass │ │ │ ├── mod.rs │ │ │ ├── terrain.frag │ │ │ ├── terrain.frag.spv │ │ │ ├── terrain.vert │ │ │ ├── terrain.vert.spv │ │ │ └── terrain_textures.rs │ │ └── vox_pass │ │ │ ├── mod.rs │ │ │ ├── vox.frag │ │ │ ├── vox.frag.spv │ │ │ ├── vox.vert │ │ │ └── vox.vert.spv │ └── voxels │ │ ├── cube.rs │ │ ├── greedy.rs │ │ ├── instance_list.rs │ │ ├── mod.rs │ │ ├── modelsize.rs │ │ └── voxbuffer.rs ├── run_state.rs ├── systems │ ├── automatic_reactions.rs │ ├── calendar.rs │ ├── camera_control.rs │ ├── component_hauling.rs │ ├── construct.rs │ ├── construct_building.rs │ ├── construction_designator.rs │ ├── construction_map.rs │ ├── end_turn.rs │ ├── initiative.rs │ ├── leisure_shift.rs │ ├── lumber_map.rs │ ├── lumberjack.rs │ ├── mining.rs │ ├── mining_map.rs │ ├── mod.rs │ ├── move_randomly.rs │ ├── pause_control.rs │ ├── reactions.rs │ ├── settler_scheduler.rs │ ├── sleep_shift.rs │ ├── tool_collection.rs │ ├── utils │ │ ├── mod.rs │ │ └── toolfinder.rs │ ├── viewshed.rs │ └── work_shift.rs ├── ui │ ├── building_info.rs │ ├── design_buildings.rs │ ├── design_construction.rs │ ├── design_lumberjack.rs │ ├── design_mining.rs │ ├── main_menu.rs │ ├── mod.rs │ ├── settlers_list.rs │ ├── tables.rs │ └── tooltips.rs └── uniforms │ ├── camera.rs │ └── mod.rs ├── shared_resources.rs └── worldgen ├── gen1.rs ├── gen2.rs ├── mod.rs └── worldgen_uniforms ├── camera.rs └── mod.rs /.VSCodeCounter/details.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/.VSCodeCounter/details.md -------------------------------------------------------------------------------- /.VSCodeCounter/results.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/.VSCodeCounter/results.csv -------------------------------------------------------------------------------- /.VSCodeCounter/results.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/.VSCodeCounter/results.md -------------------------------------------------------------------------------- /.VSCodeCounter/results.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/.VSCodeCounter/results.txt -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | world.dat 3 | reshade.bat 4 | -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/Cargo.lock -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/LICENSE -------------------------------------------------------------------------------- /NFRenderDoc-Release.cap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/NFRenderDoc-Release.cap -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/README.md -------------------------------------------------------------------------------- /bengine/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/bengine/Cargo.toml -------------------------------------------------------------------------------- /bengine/src/assets/float_buffer.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/bengine/src/assets/float_buffer.rs -------------------------------------------------------------------------------- /bengine/src/assets/layouts/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/bengine/src/assets/layouts/mod.rs -------------------------------------------------------------------------------- /bengine/src/assets/layouts/pipelines.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/bengine/src/assets/layouts/pipelines.rs -------------------------------------------------------------------------------- /bengine/src/assets/layouts/texture_bg.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/bengine/src/assets/layouts/texture_bg.rs -------------------------------------------------------------------------------- /bengine/src/assets/layouts/texture_bg_layout.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/bengine/src/assets/layouts/texture_bg_layout.rs -------------------------------------------------------------------------------- /bengine/src/assets/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/bengine/src/assets/mod.rs -------------------------------------------------------------------------------- /bengine/src/assets/shaders/loader.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/bengine/src/assets/shaders/loader.rs -------------------------------------------------------------------------------- /bengine/src/assets/shaders/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/bengine/src/assets/shaders/mod.rs -------------------------------------------------------------------------------- /bengine/src/assets/textures/depth_texture.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/bengine/src/assets/textures/depth_texture.rs -------------------------------------------------------------------------------- /bengine/src/assets/textures/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/bengine/src/assets/textures/mod.rs -------------------------------------------------------------------------------- /bengine/src/assets/textures/texture_loader.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/bengine/src/assets/textures/texture_loader.rs -------------------------------------------------------------------------------- /bengine/src/core/main_loop.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/bengine/src/core/main_loop.rs -------------------------------------------------------------------------------- /bengine/src/core/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/bengine/src/core/mod.rs -------------------------------------------------------------------------------- /bengine/src/game.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/bengine/src/game.rs -------------------------------------------------------------------------------- /bengine/src/helpers/background_quad.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/bengine/src/helpers/background_quad.rs -------------------------------------------------------------------------------- /bengine/src/helpers/loaders.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/bengine/src/helpers/loaders.rs -------------------------------------------------------------------------------- /bengine/src/helpers/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/bengine/src/helpers/mod.rs -------------------------------------------------------------------------------- /bengine/src/helpers/quad_tex.frag.spv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/bengine/src/helpers/quad_tex.frag.spv -------------------------------------------------------------------------------- /bengine/src/helpers/quad_tex.vert.spv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/bengine/src/helpers/quad_tex.vert.spv -------------------------------------------------------------------------------- /bengine/src/imgui_wgpu/imgui.frag.spv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/bengine/src/imgui_wgpu/imgui.frag.spv -------------------------------------------------------------------------------- /bengine/src/imgui_wgpu/imgui.vert.spv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/bengine/src/imgui_wgpu/imgui.vert.spv -------------------------------------------------------------------------------- /bengine/src/imgui_wgpu/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/bengine/src/imgui_wgpu/mod.rs -------------------------------------------------------------------------------- /bengine/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/bengine/src/lib.rs -------------------------------------------------------------------------------- /bengine/src/nf/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/bengine/src/nf/mod.rs -------------------------------------------------------------------------------- /bengine/src/nf/palette.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/bengine/src/nf/palette.rs -------------------------------------------------------------------------------- /bengine/src/render_core/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/bengine/src/render_core/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /bengine/src/render_core/init.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/bengine/src/render_core/init.rs -------------------------------------------------------------------------------- /bengine/src/render_core/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/bengine/src/render_core/mod.rs -------------------------------------------------------------------------------- /bengine/src/render_core/render_context/init.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/bengine/src/render_core/render_context/init.rs -------------------------------------------------------------------------------- /bengine/src/render_core/render_context/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/bengine/src/render_core/render_context/mod.rs -------------------------------------------------------------------------------- /nox_components/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/nox_components/Cargo.toml -------------------------------------------------------------------------------- /nox_components/src/field_of_view.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/nox_components/src/field_of_view.rs -------------------------------------------------------------------------------- /nox_components/src/gamesys/attributes.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/nox_components/src/gamesys/attributes.rs -------------------------------------------------------------------------------- /nox_components/src/gamesys/health.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/nox_components/src/gamesys/health.rs -------------------------------------------------------------------------------- /nox_components/src/gamesys/initiative.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/nox_components/src/gamesys/initiative.rs -------------------------------------------------------------------------------- /nox_components/src/gamesys/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/nox_components/src/gamesys/mod.rs -------------------------------------------------------------------------------- /nox_components/src/gamesys/skills.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/nox_components/src/gamesys/skills.rs -------------------------------------------------------------------------------- /nox_components/src/identity.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/nox_components/src/identity.rs -------------------------------------------------------------------------------- /nox_components/src/items/blueprint.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/nox_components/src/items/blueprint.rs -------------------------------------------------------------------------------- /nox_components/src/items/claimed.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/nox_components/src/items/claimed.rs -------------------------------------------------------------------------------- /nox_components/src/items/hauling.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/nox_components/src/items/hauling.rs -------------------------------------------------------------------------------- /nox_components/src/items/material.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/nox_components/src/items/material.rs -------------------------------------------------------------------------------- /nox_components/src/items/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/nox_components/src/items/mod.rs -------------------------------------------------------------------------------- /nox_components/src/items/reaction_job.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/nox_components/src/items/reaction_job.rs -------------------------------------------------------------------------------- /nox_components/src/items/storage.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/nox_components/src/items/storage.rs -------------------------------------------------------------------------------- /nox_components/src/items/tool.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/nox_components/src/items/tool.rs -------------------------------------------------------------------------------- /nox_components/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/nox_components/src/lib.rs -------------------------------------------------------------------------------- /nox_components/src/plants/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/nox_components/src/plants/mod.rs -------------------------------------------------------------------------------- /nox_components/src/plants/tree.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/nox_components/src/plants/tree.rs -------------------------------------------------------------------------------- /nox_components/src/plants/vegetation.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/nox_components/src/plants/vegetation.rs -------------------------------------------------------------------------------- /nox_components/src/render/camera.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/nox_components/src/render/camera.rs -------------------------------------------------------------------------------- /nox_components/src/render/composite_render.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/nox_components/src/render/composite_render.rs -------------------------------------------------------------------------------- /nox_components/src/render/light.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/nox_components/src/render/light.rs -------------------------------------------------------------------------------- /nox_components/src/render/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/nox_components/src/render/mod.rs -------------------------------------------------------------------------------- /nox_components/src/render/objmodel.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/nox_components/src/render/objmodel.rs -------------------------------------------------------------------------------- /nox_components/src/render/tint.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/nox_components/src/render/tint.rs -------------------------------------------------------------------------------- /nox_components/src/render/voxel_model.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/nox_components/src/render/voxel_model.rs -------------------------------------------------------------------------------- /nox_components/src/serialize.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/nox_components/src/serialize.rs -------------------------------------------------------------------------------- /nox_components/src/spatial/construction.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/nox_components/src/spatial/construction.rs -------------------------------------------------------------------------------- /nox_components/src/spatial/mining.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/nox_components/src/spatial/mining.rs -------------------------------------------------------------------------------- /nox_components/src/spatial/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/nox_components/src/spatial/mod.rs -------------------------------------------------------------------------------- /nox_components/src/spatial/position.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/nox_components/src/spatial/position.rs -------------------------------------------------------------------------------- /nox_components/src/spawner/building.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/nox_components/src/spawner/building.rs -------------------------------------------------------------------------------- /nox_components/src/spawner/clothing.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/nox_components/src/spawner/clothing.rs -------------------------------------------------------------------------------- /nox_components/src/spawner/items.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/nox_components/src/spawner/items.rs -------------------------------------------------------------------------------- /nox_components/src/spawner/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/nox_components/src/spawner/mod.rs -------------------------------------------------------------------------------- /nox_components/src/spawner/plant.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/nox_components/src/spawner/plant.rs -------------------------------------------------------------------------------- /nox_components/src/species.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/nox_components/src/species.rs -------------------------------------------------------------------------------- /nox_components/src/tags/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/nox_components/src/tags/mod.rs -------------------------------------------------------------------------------- /nox_components/src/tags/orders.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/nox_components/src/tags/orders.rs -------------------------------------------------------------------------------- /nox_components/src/temporal/calendar.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/nox_components/src/temporal/calendar.rs -------------------------------------------------------------------------------- /nox_components/src/temporal/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/nox_components/src/temporal/mod.rs -------------------------------------------------------------------------------- /nox_components/src/temporal/myturn.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/nox_components/src/temporal/myturn.rs -------------------------------------------------------------------------------- /nox_components/src/temporal/work_schedule.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/nox_components/src/temporal/work_schedule.rs -------------------------------------------------------------------------------- /nox_components/src/text/description.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/nox_components/src/text/description.rs -------------------------------------------------------------------------------- /nox_components/src/text/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/nox_components/src/text/mod.rs -------------------------------------------------------------------------------- /nox_components/src/text/name.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/nox_components/src/text/name.rs -------------------------------------------------------------------------------- /nox_components/src/text/tagline.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/nox_components/src/text/tagline.rs -------------------------------------------------------------------------------- /nox_planet/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/nox_planet/Cargo.toml -------------------------------------------------------------------------------- /nox_planet/src/biome.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/nox_planet/src/biome.rs -------------------------------------------------------------------------------- /nox_planet/src/block.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/nox_planet/src/block.rs -------------------------------------------------------------------------------- /nox_planet/src/builder/biomes.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/nox_planet/src/builder/biomes.rs -------------------------------------------------------------------------------- /nox_planet/src/builder/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/nox_planet/src/builder/mod.rs -------------------------------------------------------------------------------- /nox_planet/src/builder/noise_helper.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/nox_planet/src/builder/noise_helper.rs -------------------------------------------------------------------------------- /nox_planet/src/builder/planet_categories.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/nox_planet/src/builder/planet_categories.rs -------------------------------------------------------------------------------- /nox_planet/src/builder/planet_noise.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/nox_planet/src/builder/planet_noise.rs -------------------------------------------------------------------------------- /nox_planet/src/builder/rivers.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/nox_planet/src/builder/rivers.rs -------------------------------------------------------------------------------- /nox_planet/src/groundz.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/nox_planet/src/groundz.rs -------------------------------------------------------------------------------- /nox_planet/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/nox_planet/src/lib.rs -------------------------------------------------------------------------------- /nox_planet/src/pathfinding/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/nox_planet/src/pathfinding/mod.rs -------------------------------------------------------------------------------- /nox_planet/src/planet.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/nox_planet/src/planet.rs -------------------------------------------------------------------------------- /nox_planet/src/planet_render.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/nox_planet/src/planet_render.rs -------------------------------------------------------------------------------- /nox_planet/src/region/builder/beaches.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/nox_planet/src/region/builder/beaches.rs -------------------------------------------------------------------------------- /nox_planet/src/region/builder/buildings.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/nox_planet/src/region/builder/buildings.rs -------------------------------------------------------------------------------- /nox_planet/src/region/builder/debris.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/nox_planet/src/region/builder/debris.rs -------------------------------------------------------------------------------- /nox_planet/src/region/builder/flags.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/nox_planet/src/region/builder/flags.rs -------------------------------------------------------------------------------- /nox_planet/src/region/builder/game_components.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/nox_planet/src/region/builder/game_components.rs -------------------------------------------------------------------------------- /nox_planet/src/region/builder/heightmap.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/nox_planet/src/region/builder/heightmap.rs -------------------------------------------------------------------------------- /nox_planet/src/region/builder/map_components.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/nox_planet/src/region/builder/map_components.rs -------------------------------------------------------------------------------- /nox_planet/src/region/builder/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/nox_planet/src/region/builder/mod.rs -------------------------------------------------------------------------------- /nox_planet/src/region/builder/plants.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/nox_planet/src/region/builder/plants.rs -------------------------------------------------------------------------------- /nox_planet/src/region/builder/primitive.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/nox_planet/src/region/builder/primitive.rs -------------------------------------------------------------------------------- /nox_planet/src/region/builder/ramping.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/nox_planet/src/region/builder/ramping.rs -------------------------------------------------------------------------------- /nox_planet/src/region/builder/settlers.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/nox_planet/src/region/builder/settlers.rs -------------------------------------------------------------------------------- /nox_planet/src/region/builder/strata.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/nox_planet/src/region/builder/strata.rs -------------------------------------------------------------------------------- /nox_planet/src/region/builder/trees.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/nox_planet/src/region/builder/trees.rs -------------------------------------------------------------------------------- /nox_planet/src/region/builder/water_features.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/nox_planet/src/region/builder/water_features.rs -------------------------------------------------------------------------------- /nox_planet/src/region/construction_map.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/nox_planet/src/region/construction_map.rs -------------------------------------------------------------------------------- /nox_planet/src/region/lumber_map.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/nox_planet/src/region/lumber_map.rs -------------------------------------------------------------------------------- /nox_planet/src/region/mining_map.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/nox_planet/src/region/mining_map.rs -------------------------------------------------------------------------------- /nox_planet/src/region/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/nox_planet/src/region/mod.rs -------------------------------------------------------------------------------- /nox_planet/src/region/tiletype.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/nox_planet/src/region/tiletype.rs -------------------------------------------------------------------------------- /nox_planet/src/rex.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/nox_planet/src/rex.rs -------------------------------------------------------------------------------- /nox_planet/src/river.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/nox_planet/src/river.rs -------------------------------------------------------------------------------- /nox_planet/src/savedgame.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/nox_planet/src/savedgame.rs -------------------------------------------------------------------------------- /nox_planet/src/spawner.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/nox_planet/src/spawner.rs -------------------------------------------------------------------------------- /nox_planet/src/sphere.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/nox_planet/src/sphere.rs -------------------------------------------------------------------------------- /nox_planet/src/worldgen_render.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/nox_planet/src/worldgen_render.rs -------------------------------------------------------------------------------- /nox_raws/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/nox_raws/Cargo.toml -------------------------------------------------------------------------------- /nox_raws/src/blocktype.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/nox_raws/src/blocktype.rs -------------------------------------------------------------------------------- /nox_raws/src/formats/biomes.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/nox_raws/src/formats/biomes.rs -------------------------------------------------------------------------------- /nox_raws/src/formats/buildings.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/nox_raws/src/formats/buildings.rs -------------------------------------------------------------------------------- /nox_raws/src/formats/bundle.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/nox_raws/src/formats/bundle.rs -------------------------------------------------------------------------------- /nox_raws/src/formats/clothing.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/nox_raws/src/formats/clothing.rs -------------------------------------------------------------------------------- /nox_raws/src/formats/items.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/nox_raws/src/formats/items.rs -------------------------------------------------------------------------------- /nox_raws/src/formats/materials.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/nox_raws/src/formats/materials.rs -------------------------------------------------------------------------------- /nox_raws/src/formats/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/nox_raws/src/formats/mod.rs -------------------------------------------------------------------------------- /nox_raws/src/formats/names.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/nox_raws/src/formats/names.rs -------------------------------------------------------------------------------- /nox_raws/src/formats/plants.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/nox_raws/src/formats/plants.rs -------------------------------------------------------------------------------- /nox_raws/src/formats/professions.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/nox_raws/src/formats/professions.rs -------------------------------------------------------------------------------- /nox_raws/src/formats/reactions.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/nox_raws/src/formats/reactions.rs -------------------------------------------------------------------------------- /nox_raws/src/formats/species.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/nox_raws/src/formats/species.rs -------------------------------------------------------------------------------- /nox_raws/src/formats/vox.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/nox_raws/src/formats/vox.rs -------------------------------------------------------------------------------- /nox_raws/src/formats/wavefront.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/nox_raws/src/formats/wavefront.rs -------------------------------------------------------------------------------- /nox_raws/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/nox_raws/src/lib.rs -------------------------------------------------------------------------------- /nox_raws/src/material_map.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/nox_raws/src/material_map.rs -------------------------------------------------------------------------------- /nox_spatial/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/nox_spatial/Cargo.toml -------------------------------------------------------------------------------- /nox_spatial/src/indices.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/nox_spatial/src/indices.rs -------------------------------------------------------------------------------- /nox_spatial/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/nox_spatial/src/lib.rs -------------------------------------------------------------------------------- /nox_utils/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/nox_utils/Cargo.toml -------------------------------------------------------------------------------- /nox_utils/src/attrmods.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/nox_utils/src/attrmods.rs -------------------------------------------------------------------------------- /nox_utils/src/cube.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/nox_utils/src/cube.rs -------------------------------------------------------------------------------- /nox_utils/src/floor.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/nox_utils/src/floor.rs -------------------------------------------------------------------------------- /nox_utils/src/frustrum.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/nox_utils/src/frustrum.rs -------------------------------------------------------------------------------- /nox_utils/src/indices.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/nox_utils/src/indices.rs -------------------------------------------------------------------------------- /nox_utils/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/nox_utils/src/lib.rs -------------------------------------------------------------------------------- /nox_utils/src/ramps.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/nox_utils/src/ramps.rs -------------------------------------------------------------------------------- /nox_utils/src/region.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/nox_utils/src/region.rs -------------------------------------------------------------------------------- /resources/cursors/base_cursor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/resources/cursors/base_cursor.png -------------------------------------------------------------------------------- /resources/cursors/bridge_cursor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/resources/cursors/bridge_cursor.png -------------------------------------------------------------------------------- /resources/cursors/channel_cursor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/resources/cursors/channel_cursor.png -------------------------------------------------------------------------------- /resources/cursors/chop_cursor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/resources/cursors/chop_cursor.png -------------------------------------------------------------------------------- /resources/cursors/dig_cursor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/resources/cursors/dig_cursor.png -------------------------------------------------------------------------------- /resources/cursors/downstairs_cursor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/resources/cursors/downstairs_cursor.png -------------------------------------------------------------------------------- /resources/cursors/farm_cursor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/resources/cursors/farm_cursor.png -------------------------------------------------------------------------------- /resources/cursors/floor_cursor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/resources/cursors/floor_cursor.png -------------------------------------------------------------------------------- /resources/cursors/guard_cursor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/resources/cursors/guard_cursor.png -------------------------------------------------------------------------------- /resources/cursors/ramp_cursor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/resources/cursors/ramp_cursor.png -------------------------------------------------------------------------------- /resources/cursors/tree_cursor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/resources/cursors/tree_cursor.png -------------------------------------------------------------------------------- /resources/cursors/updownstairs_cursor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/resources/cursors/updownstairs_cursor.png -------------------------------------------------------------------------------- /resources/cursors/upstairs_cursor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/resources/cursors/upstairs_cursor.png -------------------------------------------------------------------------------- /resources/cursors/wall_cursor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/resources/cursors/wall_cursor.png -------------------------------------------------------------------------------- /resources/images/background_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/resources/images/background_image.png -------------------------------------------------------------------------------- /resources/images/game_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/resources/images/game_logo.png -------------------------------------------------------------------------------- /resources/metal-template.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/resources/metal-template.jpg -------------------------------------------------------------------------------- /resources/obj/Low_Poly_Forest_treeBlob01.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/resources/obj/Low_Poly_Forest_treeBlob01.obj -------------------------------------------------------------------------------- /resources/obj/Low_Poly_Forest_treeBlob02.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/resources/obj/Low_Poly_Forest_treeBlob02.obj -------------------------------------------------------------------------------- /resources/obj/Low_Poly_Forest_treeBlob03.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/resources/obj/Low_Poly_Forest_treeBlob03.obj -------------------------------------------------------------------------------- /resources/obj/Low_Poly_Forest_treeTall01.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/resources/obj/Low_Poly_Forest_treeTall01.obj -------------------------------------------------------------------------------- /resources/obj/Low_Poly_Forest_treeTall02.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/resources/obj/Low_Poly_Forest_treeTall02.obj -------------------------------------------------------------------------------- /resources/obj/Low_Poly_Forest_treeTall03.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/resources/obj/Low_Poly_Forest_treeTall03.obj -------------------------------------------------------------------------------- /resources/obj/Low_Poly_Forest_treeTall04.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/resources/obj/Low_Poly_Forest_treeTall04.obj -------------------------------------------------------------------------------- /resources/raws/biome_bundle.ron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/resources/raws/biome_bundle.ron -------------------------------------------------------------------------------- /resources/raws/clothing_bundle.ron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/resources/raws/clothing_bundle.ron -------------------------------------------------------------------------------- /resources/raws/first_names_female.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/resources/raws/first_names_female.txt -------------------------------------------------------------------------------- /resources/raws/first_names_male.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/resources/raws/first_names_male.txt -------------------------------------------------------------------------------- /resources/raws/index.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/resources/raws/index.txt -------------------------------------------------------------------------------- /resources/raws/last_names.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/resources/raws/last_names.txt -------------------------------------------------------------------------------- /resources/raws/mats/igneous.ron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/resources/raws/mats/igneous.ron -------------------------------------------------------------------------------- /resources/raws/mats/ore.ron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/resources/raws/mats/ore.ron -------------------------------------------------------------------------------- /resources/raws/mats/sand.ron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/resources/raws/mats/sand.ron -------------------------------------------------------------------------------- /resources/raws/mats/sediment.ron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/resources/raws/mats/sediment.ron -------------------------------------------------------------------------------- /resources/raws/mats/soil.ron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/resources/raws/mats/soil.ron -------------------------------------------------------------------------------- /resources/raws/mats/synthetic.ron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/resources/raws/mats/synthetic.ron -------------------------------------------------------------------------------- /resources/raws/mats/wood.ron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/resources/raws/mats/wood.ron -------------------------------------------------------------------------------- /resources/raws/plants_bundle.ron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/resources/raws/plants_bundle.ron -------------------------------------------------------------------------------- /resources/raws/professions_bundle.ron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/resources/raws/professions_bundle.ron -------------------------------------------------------------------------------- /resources/raws/raw_materials/ash.ron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/resources/raws/raw_materials/ash.ron -------------------------------------------------------------------------------- /resources/raws/raw_materials/block.ron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/resources/raws/raw_materials/block.ron -------------------------------------------------------------------------------- /resources/raws/raw_materials/charcoal.ron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/resources/raws/raw_materials/charcoal.ron -------------------------------------------------------------------------------- /resources/raws/raw_materials/coal.ron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/resources/raws/raw_materials/coal.ron -------------------------------------------------------------------------------- /resources/raws/raw_materials/ore.ron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/resources/raws/raw_materials/ore.ron -------------------------------------------------------------------------------- /resources/raws/raw_materials/stone_boulder.ron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/resources/raws/raw_materials/stone_boulder.ron -------------------------------------------------------------------------------- /resources/raws/raw_materials/woodlogs.ron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/resources/raws/raw_materials/woodlogs.ron -------------------------------------------------------------------------------- /resources/raws/shipboard/battery.ron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/resources/raws/shipboard/battery.ron -------------------------------------------------------------------------------- /resources/raws/shipboard/cordex.ron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/resources/raws/shipboard/cordex.ron -------------------------------------------------------------------------------- /resources/raws/shipboard/cryo_bed.ron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/resources/raws/shipboard/cryo_bed.ron -------------------------------------------------------------------------------- /resources/raws/shipboard/fake_camp_fire.ron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/resources/raws/shipboard/fake_camp_fire.ron -------------------------------------------------------------------------------- /resources/raws/shipboard/personal_survival_shelter.ron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/resources/raws/shipboard/personal_survival_shelter.ron -------------------------------------------------------------------------------- /resources/raws/shipboard/rtg.ron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/resources/raws/shipboard/rtg.ron -------------------------------------------------------------------------------- /resources/raws/shipboard/ship_defense_turret.ron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/resources/raws/shipboard/ship_defense_turret.ron -------------------------------------------------------------------------------- /resources/raws/shipboard/ship_lamp.ron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/resources/raws/shipboard/ship_lamp.ron -------------------------------------------------------------------------------- /resources/raws/shipboard/small_replicator.ron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/resources/raws/shipboard/small_replicator.ron -------------------------------------------------------------------------------- /resources/raws/shipboard/solar_panel.ron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/resources/raws/shipboard/solar_panel.ron -------------------------------------------------------------------------------- /resources/raws/shipboard/storage_locker.ron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/resources/raws/shipboard/storage_locker.ron -------------------------------------------------------------------------------- /resources/raws/species_bundle.ron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/resources/raws/species_bundle.ron -------------------------------------------------------------------------------- /resources/raws/tools/fire_axe.ron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/resources/raws/tools/fire_axe.ron -------------------------------------------------------------------------------- /resources/raws/tools/hoe.ron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/resources/raws/tools/hoe.ron -------------------------------------------------------------------------------- /resources/raws/tools/pickaxe.ron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/resources/raws/tools/pickaxe.ron -------------------------------------------------------------------------------- /resources/raws/trees.ron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/resources/raws/trees.ron -------------------------------------------------------------------------------- /resources/raws/vox_bundle.ron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/resources/raws/vox_bundle.ron -------------------------------------------------------------------------------- /resources/raws/workshops/charcoal_hut.ron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/resources/raws/workshops/charcoal_hut.ron -------------------------------------------------------------------------------- /resources/raws/workshops/sawmill.ron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/resources/raws/workshops/sawmill.ron -------------------------------------------------------------------------------- /resources/raws/workshops/smelter.ron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/resources/raws/workshops/smelter.ron -------------------------------------------------------------------------------- /resources/raws/workshops/stonecutter.ron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/resources/raws/workshops/stonecutter.ron -------------------------------------------------------------------------------- /resources/rex/spaceship.xp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/resources/rex/spaceship.xp -------------------------------------------------------------------------------- /resources/shaders/compile.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/resources/shaders/compile.bat -------------------------------------------------------------------------------- /resources/shaders/cursors.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/resources/shaders/cursors.frag -------------------------------------------------------------------------------- /resources/shaders/cursors.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/resources/shaders/cursors.vert -------------------------------------------------------------------------------- /resources/shaders/gbuffer_test.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/resources/shaders/gbuffer_test.frag -------------------------------------------------------------------------------- /resources/shaders/gbuffer_test.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/resources/shaders/gbuffer_test.vert -------------------------------------------------------------------------------- /resources/shaders/planetgen.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/resources/shaders/planetgen.frag -------------------------------------------------------------------------------- /resources/shaders/planetgen.frag.spv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/resources/shaders/planetgen.frag.spv -------------------------------------------------------------------------------- /resources/shaders/planetgen.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/resources/shaders/planetgen.vert -------------------------------------------------------------------------------- /resources/shaders/planetgen.vert.spv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/resources/shaders/planetgen.vert.spv -------------------------------------------------------------------------------- /resources/shaders/regionblocks.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/resources/shaders/regionblocks.frag -------------------------------------------------------------------------------- /resources/shaders/regionblocks.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/resources/shaders/regionblocks.vert -------------------------------------------------------------------------------- /resources/shaders/shader.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/resources/shaders/shader.frag -------------------------------------------------------------------------------- /resources/shaders/shader.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/resources/shaders/shader.vert -------------------------------------------------------------------------------- /resources/shaders/sunlight.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/resources/shaders/sunlight.frag -------------------------------------------------------------------------------- /resources/shaders/sunlight.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/resources/shaders/sunlight.vert -------------------------------------------------------------------------------- /resources/shaders/voxmod.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/resources/shaders/voxmod.frag -------------------------------------------------------------------------------- /resources/shaders/voxmod.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/resources/shaders/voxmod.vert -------------------------------------------------------------------------------- /resources/terrain/cobbles-n.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/resources/terrain/cobbles-n.png -------------------------------------------------------------------------------- /resources/terrain/cobbles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/resources/terrain/cobbles.png -------------------------------------------------------------------------------- /resources/terrain/drydiirt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/resources/terrain/drydiirt.png -------------------------------------------------------------------------------- /resources/terrain/drydirt-n.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/resources/terrain/drydirt-n.png -------------------------------------------------------------------------------- /resources/terrain/drydirt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/resources/terrain/drydirt.png -------------------------------------------------------------------------------- /resources/terrain/granite-n.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/resources/terrain/granite-n.png -------------------------------------------------------------------------------- /resources/terrain/granite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/resources/terrain/granite.png -------------------------------------------------------------------------------- /resources/terrain/hidden-n.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/resources/terrain/hidden-n.png -------------------------------------------------------------------------------- /resources/terrain/hidden.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/resources/terrain/hidden.png -------------------------------------------------------------------------------- /resources/terrain/limestone-n.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/resources/terrain/limestone-n.png -------------------------------------------------------------------------------- /resources/terrain/limestone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/resources/terrain/limestone.png -------------------------------------------------------------------------------- /resources/terrain/metalfloor-n.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/resources/terrain/metalfloor-n.png -------------------------------------------------------------------------------- /resources/terrain/metalfloor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/resources/terrain/metalfloor.png -------------------------------------------------------------------------------- /resources/terrain/plasteeltile-n.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/resources/terrain/plasteeltile-n.png -------------------------------------------------------------------------------- /resources/terrain/plasteeltile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/resources/terrain/plasteeltile.png -------------------------------------------------------------------------------- /resources/terrain/titanium-n.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/resources/terrain/titanium-n.png -------------------------------------------------------------------------------- /resources/terrain/titanium.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/resources/terrain/titanium.png -------------------------------------------------------------------------------- /resources/vox/ant.vox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/resources/vox/ant.vox -------------------------------------------------------------------------------- /resources/vox/armadillo.vox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/resources/vox/armadillo.vox -------------------------------------------------------------------------------- /resources/vox/arrow.vox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/resources/vox/arrow.vox -------------------------------------------------------------------------------- /resources/vox/atlatl.vox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/resources/vox/atlatl.vox -------------------------------------------------------------------------------- /resources/vox/axeblade.vox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/resources/vox/axeblade.vox -------------------------------------------------------------------------------- /resources/vox/badger.vox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/resources/vox/badger.vox -------------------------------------------------------------------------------- /resources/vox/battery.vox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/resources/vox/battery.vox -------------------------------------------------------------------------------- /resources/vox/bed.vox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/resources/vox/bed.vox -------------------------------------------------------------------------------- /resources/vox/blades-extended.vox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/resources/vox/blades-extended.vox -------------------------------------------------------------------------------- /resources/vox/blades-retracted.vox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/resources/vox/blades-retracted.vox -------------------------------------------------------------------------------- /resources/vox/blight-ao.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/resources/vox/blight-ao.jpg -------------------------------------------------------------------------------- /resources/vox/block.vox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/resources/vox/block.vox -------------------------------------------------------------------------------- /resources/vox/bone.vox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/resources/vox/bone.vox -------------------------------------------------------------------------------- /resources/vox/bonecarver.vox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/resources/vox/bonecarver.vox -------------------------------------------------------------------------------- /resources/vox/boulder.vox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/resources/vox/boulder.vox -------------------------------------------------------------------------------- /resources/vox/bow.vox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/resources/vox/bow.vox -------------------------------------------------------------------------------- /resources/vox/butcher.vox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/resources/vox/butcher.vox -------------------------------------------------------------------------------- /resources/vox/cabinet.vox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/resources/vox/cabinet.vox -------------------------------------------------------------------------------- /resources/vox/cage.vox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/resources/vox/cage.vox -------------------------------------------------------------------------------- /resources/vox/campfire-fake.vox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/resources/vox/campfire-fake.vox -------------------------------------------------------------------------------- /resources/vox/carpenter.vox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/resources/vox/carpenter.vox -------------------------------------------------------------------------------- /resources/vox/carpenter_intermediate.vox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/resources/vox/carpenter_intermediate.vox -------------------------------------------------------------------------------- /resources/vox/chair.vox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/resources/vox/chair.vox -------------------------------------------------------------------------------- /resources/vox/charcoal.vox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/resources/vox/charcoal.vox -------------------------------------------------------------------------------- /resources/vox/charcoal_hut.vox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/resources/vox/charcoal_hut.vox -------------------------------------------------------------------------------- /resources/vox/chemist.vox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/resources/vox/chemist.vox -------------------------------------------------------------------------------- /resources/vox/circuit.vox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/resources/vox/circuit.vox -------------------------------------------------------------------------------- /resources/vox/cloth.vox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/resources/vox/cloth.vox -------------------------------------------------------------------------------- /resources/vox/clothes_bathrobe.vox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/resources/vox/clothes_bathrobe.vox -------------------------------------------------------------------------------- /resources/vox/clothes_batman_hat.vox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/resources/vox/clothes_batman_hat.vox -------------------------------------------------------------------------------- /resources/vox/clothes_boots.vox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/resources/vox/clothes_boots.vox -------------------------------------------------------------------------------- /resources/vox/clothes_britches_simple.vox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/resources/vox/clothes_britches_simple.vox -------------------------------------------------------------------------------- /resources/vox/clothes_cap_simple.vox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/resources/vox/clothes_cap_simple.vox -------------------------------------------------------------------------------- /resources/vox/clothes_cargopants.vox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/resources/vox/clothes_cargopants.vox -------------------------------------------------------------------------------- /resources/vox/clothes_cat_ears.vox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/resources/vox/clothes_cat_ears.vox -------------------------------------------------------------------------------- /resources/vox/clothes_formal_shirt.vox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/resources/vox/clothes_formal_shirt.vox -------------------------------------------------------------------------------- /resources/vox/clothes_hawaiian_shorts.vox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/resources/vox/clothes_hawaiian_shorts.vox -------------------------------------------------------------------------------- /resources/vox/clothes_longskirt.vox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/resources/vox/clothes_longskirt.vox -------------------------------------------------------------------------------- /resources/vox/clothes_miniskirt.vox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/resources/vox/clothes_miniskirt.vox -------------------------------------------------------------------------------- /resources/vox/clothes_police_hat.vox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/resources/vox/clothes_police_hat.vox -------------------------------------------------------------------------------- /resources/vox/clothes_shoes.vox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/resources/vox/clothes_shoes.vox -------------------------------------------------------------------------------- /resources/vox/clothes_simple_tunic.vox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/resources/vox/clothes_simple_tunic.vox -------------------------------------------------------------------------------- /resources/vox/clothes_spandex_pants.vox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/resources/vox/clothes_spandex_pants.vox -------------------------------------------------------------------------------- /resources/vox/clothes_spandex_shirt.vox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/resources/vox/clothes_spandex_shirt.vox -------------------------------------------------------------------------------- /resources/vox/clothes_sports_shirt.vox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/resources/vox/clothes_sports_shirt.vox -------------------------------------------------------------------------------- /resources/vox/clothes_tiara.vox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/resources/vox/clothes_tiara.vox -------------------------------------------------------------------------------- /resources/vox/clothes_tshirt.vox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/resources/vox/clothes_tshirt.vox -------------------------------------------------------------------------------- /resources/vox/club.vox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/resources/vox/club.vox -------------------------------------------------------------------------------- /resources/vox/club_spiked.vox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/resources/vox/club_spiked.vox -------------------------------------------------------------------------------- /resources/vox/coal.vox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/resources/vox/coal.vox -------------------------------------------------------------------------------- /resources/vox/cordex.vox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/resources/vox/cordex.vox -------------------------------------------------------------------------------- /resources/vox/corpse.vox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/resources/vox/corpse.vox -------------------------------------------------------------------------------- /resources/vox/crate-fakefire.vox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/resources/vox/crate-fakefire.vox -------------------------------------------------------------------------------- /resources/vox/crate-tent.vox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/resources/vox/crate-tent.vox -------------------------------------------------------------------------------- /resources/vox/crate.vox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/resources/vox/crate.vox -------------------------------------------------------------------------------- /resources/vox/crossbow.vox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/resources/vox/crossbow.vox -------------------------------------------------------------------------------- /resources/vox/cryobed32.vox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/resources/vox/cryobed32.vox -------------------------------------------------------------------------------- /resources/vox/daisy.vox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/resources/vox/daisy.vox -------------------------------------------------------------------------------- /resources/vox/deer.vox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/resources/vox/deer.vox -------------------------------------------------------------------------------- /resources/vox/door_closed.vox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/resources/vox/door_closed.vox -------------------------------------------------------------------------------- /resources/vox/door_ground.vox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/resources/vox/door_ground.vox -------------------------------------------------------------------------------- /resources/vox/door_open.vox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/resources/vox/door_open.vox -------------------------------------------------------------------------------- /resources/vox/dung.vox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/resources/vox/dung.vox -------------------------------------------------------------------------------- /resources/vox/dung_heap.vox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/resources/vox/dung_heap.vox -------------------------------------------------------------------------------- /resources/vox/energydoor-closed.vox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/resources/vox/energydoor-closed.vox -------------------------------------------------------------------------------- /resources/vox/energydoor-open.vox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/resources/vox/energydoor-open.vox -------------------------------------------------------------------------------- /resources/vox/float_gauge.vox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/resources/vox/float_gauge.vox -------------------------------------------------------------------------------- /resources/vox/floodgate_closed.vox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/resources/vox/floodgate_closed.vox -------------------------------------------------------------------------------- /resources/vox/floodgate_ground.vox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/resources/vox/floodgate_ground.vox -------------------------------------------------------------------------------- /resources/vox/floodgate_open.vox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/resources/vox/floodgate_open.vox -------------------------------------------------------------------------------- /resources/vox/floor.vox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/resources/vox/floor.vox -------------------------------------------------------------------------------- /resources/vox/floorlight.vox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/resources/vox/floorlight.vox -------------------------------------------------------------------------------- /resources/vox/foodplate.vox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/resources/vox/foodplate.vox -------------------------------------------------------------------------------- /resources/vox/forge.vox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/resources/vox/forge.vox -------------------------------------------------------------------------------- /resources/vox/gate_and.vox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/resources/vox/gate_and.vox -------------------------------------------------------------------------------- /resources/vox/gate_nand.vox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/resources/vox/gate_nand.vox -------------------------------------------------------------------------------- /resources/vox/gate_nor.vox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/resources/vox/gate_nor.vox -------------------------------------------------------------------------------- /resources/vox/gate_not.vox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/resources/vox/gate_not.vox -------------------------------------------------------------------------------- /resources/vox/gate_or.vox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/resources/vox/gate_or.vox -------------------------------------------------------------------------------- /resources/vox/gate_xor.vox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/resources/vox/gate_xor.vox -------------------------------------------------------------------------------- /resources/vox/glass_furnace.vox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/resources/vox/glass_furnace.vox -------------------------------------------------------------------------------- /resources/vox/grass.vox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/resources/vox/grass.vox -------------------------------------------------------------------------------- /resources/vox/ground_helmet.vox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/resources/vox/ground_helmet.vox -------------------------------------------------------------------------------- /resources/vox/ground_pants.vox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/resources/vox/ground_pants.vox -------------------------------------------------------------------------------- /resources/vox/ground_shirt.vox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/resources/vox/ground_shirt.vox -------------------------------------------------------------------------------- /resources/vox/ground_shoes.vox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/resources/vox/ground_shoes.vox -------------------------------------------------------------------------------- /resources/vox/hammer.vox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/resources/vox/hammer.vox -------------------------------------------------------------------------------- /resources/vox/hay.vox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/resources/vox/hay.vox -------------------------------------------------------------------------------- /resources/vox/heather.vox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/resources/vox/heather.vox -------------------------------------------------------------------------------- /resources/vox/hide.vox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/resources/vox/hide.vox -------------------------------------------------------------------------------- /resources/vox/hoe.vox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/resources/vox/hoe.vox -------------------------------------------------------------------------------- /resources/vox/hoe_held.vox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/resources/vox/hoe_held.vox -------------------------------------------------------------------------------- /resources/vox/horse.vox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/resources/vox/horse.vox -------------------------------------------------------------------------------- /resources/vox/kiln.vox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/resources/vox/kiln.vox -------------------------------------------------------------------------------- /resources/vox/knife.vox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/resources/vox/knife.vox -------------------------------------------------------------------------------- /resources/vox/lathe.vox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/resources/vox/lathe.vox -------------------------------------------------------------------------------- /resources/vox/leatherworker.vox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/resources/vox/leatherworker.vox -------------------------------------------------------------------------------- /resources/vox/lever-off.vox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/resources/vox/lever-off.vox -------------------------------------------------------------------------------- /resources/vox/lever-on.vox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/resources/vox/lever-on.vox -------------------------------------------------------------------------------- /resources/vox/liquid.vox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/resources/vox/liquid.vox -------------------------------------------------------------------------------- /resources/vox/loom.vox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/resources/vox/loom.vox -------------------------------------------------------------------------------- /resources/vox/mason.vox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/resources/vox/mason.vox -------------------------------------------------------------------------------- /resources/vox/meat.vox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/resources/vox/meat.vox -------------------------------------------------------------------------------- /resources/vox/mechanic.vox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/resources/vox/mechanic.vox -------------------------------------------------------------------------------- /resources/vox/mechanism.vox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/resources/vox/mechanism.vox -------------------------------------------------------------------------------- /resources/vox/nitrogen_extractor.vox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/resources/vox/nitrogen_extractor.vox -------------------------------------------------------------------------------- /resources/vox/oil.vox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/resources/vox/oil.vox -------------------------------------------------------------------------------- /resources/vox/ore.vox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/resources/vox/ore.vox -------------------------------------------------------------------------------- /resources/vox/oscillator.vox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/resources/vox/oscillator.vox -------------------------------------------------------------------------------- /resources/vox/paper.vox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/resources/vox/paper.vox -------------------------------------------------------------------------------- /resources/vox/person_base.vox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/resources/vox/person_base.vox -------------------------------------------------------------------------------- /resources/vox/person_hair_balding.vox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/resources/vox/person_hair_balding.vox -------------------------------------------------------------------------------- /resources/vox/person_hair_long.vox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/resources/vox/person_hair_long.vox -------------------------------------------------------------------------------- /resources/vox/person_hair_mohawk.vox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/resources/vox/person_hair_mohawk.vox -------------------------------------------------------------------------------- /resources/vox/person_hair_pigtails.vox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/resources/vox/person_hair_pigtails.vox -------------------------------------------------------------------------------- /resources/vox/person_hair_short.vox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/resources/vox/person_hair_short.vox -------------------------------------------------------------------------------- /resources/vox/person_hair_triangle.vox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/resources/vox/person_hair_triangle.vox -------------------------------------------------------------------------------- /resources/vox/pointystick.vox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/resources/vox/pointystick.vox -------------------------------------------------------------------------------- /resources/vox/powder.vox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/resources/vox/powder.vox -------------------------------------------------------------------------------- /resources/vox/pressureplate.vox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/resources/vox/pressureplate.vox -------------------------------------------------------------------------------- /resources/vox/proximity_sensor.vox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/resources/vox/proximity_sensor.vox -------------------------------------------------------------------------------- /resources/vox/raised_flower_bed.vox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/resources/vox/raised_flower_bed.vox -------------------------------------------------------------------------------- /resources/vox/ramp.vox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/resources/vox/ramp.vox -------------------------------------------------------------------------------- /resources/vox/rampnew.vox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/resources/vox/rampnew.vox -------------------------------------------------------------------------------- /resources/vox/refinery.vox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/resources/vox/refinery.vox -------------------------------------------------------------------------------- /resources/vox/replicator_small.vox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/resources/vox/replicator_small.vox -------------------------------------------------------------------------------- /resources/vox/rtg.vox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/resources/vox/rtg.vox -------------------------------------------------------------------------------- /resources/vox/sawmill.vox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/resources/vox/sawmill.vox -------------------------------------------------------------------------------- /resources/vox/seed.vox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/resources/vox/seed.vox -------------------------------------------------------------------------------- /resources/vox/silicon_refinery.vox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/resources/vox/silicon_refinery.vox -------------------------------------------------------------------------------- /resources/vox/simpleaxe.vox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/resources/vox/simpleaxe.vox -------------------------------------------------------------------------------- /resources/vox/simpleaxe_held.vox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/resources/vox/simpleaxe_held.vox -------------------------------------------------------------------------------- /resources/vox/simplepick.vox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/resources/vox/simplepick.vox -------------------------------------------------------------------------------- /resources/vox/simplepick_held.vox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/resources/vox/simplepick_held.vox -------------------------------------------------------------------------------- /resources/vox/skull.vox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/resources/vox/skull.vox -------------------------------------------------------------------------------- /resources/vox/smelter.vox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/resources/vox/smelter.vox -------------------------------------------------------------------------------- /resources/vox/solar_panel.vox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/resources/vox/solar_panel.vox -------------------------------------------------------------------------------- /resources/vox/spikes-extended.vox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/resources/vox/spikes-extended.vox -------------------------------------------------------------------------------- /resources/vox/spikes-retracted.vox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/resources/vox/spikes-retracted.vox -------------------------------------------------------------------------------- /resources/vox/stairs-down.vox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/resources/vox/stairs-down.vox -------------------------------------------------------------------------------- /resources/vox/stairs-up.vox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/resources/vox/stairs-up.vox -------------------------------------------------------------------------------- /resources/vox/stairs-updown.vox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/resources/vox/stairs-updown.vox -------------------------------------------------------------------------------- /resources/vox/still.vox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/resources/vox/still.vox -------------------------------------------------------------------------------- /resources/vox/stonecutter.vox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/resources/vox/stonecutter.vox -------------------------------------------------------------------------------- /resources/vox/stonefall.vox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/resources/vox/stonefall.vox -------------------------------------------------------------------------------- /resources/vox/support.vox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/resources/vox/support.vox -------------------------------------------------------------------------------- /resources/vox/sword.vox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/resources/vox/sword.vox -------------------------------------------------------------------------------- /resources/vox/table.vox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/resources/vox/table.vox -------------------------------------------------------------------------------- /resources/vox/tailor.vox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/resources/vox/tailor.vox -------------------------------------------------------------------------------- /resources/vox/tanner.vox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/resources/vox/tanner.vox -------------------------------------------------------------------------------- /resources/vox/tent.vox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/resources/vox/tent.vox -------------------------------------------------------------------------------- /resources/vox/thread.vox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/resources/vox/thread.vox -------------------------------------------------------------------------------- /resources/vox/tree.vox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/resources/vox/tree.vox -------------------------------------------------------------------------------- /resources/vox/turret.vox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/resources/vox/turret.vox -------------------------------------------------------------------------------- /resources/vox/veggie.vox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/resources/vox/veggie.vox -------------------------------------------------------------------------------- /resources/vox/wall.vox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/resources/vox/wall.vox -------------------------------------------------------------------------------- /resources/vox/wastewood.vox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/resources/vox/wastewood.vox -------------------------------------------------------------------------------- /resources/vox/woodlogs.vox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/resources/vox/woodlogs.vox -------------------------------------------------------------------------------- /src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/src/main.rs -------------------------------------------------------------------------------- /src/modes/loader/asset_loader.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/src/modes/loader/asset_loader.rs -------------------------------------------------------------------------------- /src/modes/loader/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/src/modes/loader/mod.rs -------------------------------------------------------------------------------- /src/modes/main_menu.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/src/modes/main_menu.rs -------------------------------------------------------------------------------- /src/modes/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/src/modes/mod.rs -------------------------------------------------------------------------------- /src/modes/playgame/loadstate.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/src/modes/playgame/loadstate.rs -------------------------------------------------------------------------------- /src/modes/playgame/messaging/apply/gamesystem.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/src/modes/playgame/messaging/apply/gamesystem.rs -------------------------------------------------------------------------------- /src/modes/playgame/messaging/apply/job_designations.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/src/modes/playgame/messaging/apply/job_designations.rs -------------------------------------------------------------------------------- /src/modes/playgame/messaging/apply/lumber.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/src/modes/playgame/messaging/apply/lumber.rs -------------------------------------------------------------------------------- /src/modes/playgame/messaging/apply/mining.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/src/modes/playgame/messaging/apply/mining.rs -------------------------------------------------------------------------------- /src/modes/playgame/messaging/apply/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/src/modes/playgame/messaging/apply/mod.rs -------------------------------------------------------------------------------- /src/modes/playgame/messaging/apply/pathing.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/src/modes/playgame/messaging/apply/pathing.rs -------------------------------------------------------------------------------- /src/modes/playgame/messaging/job_step.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/src/modes/playgame/messaging/job_step.rs -------------------------------------------------------------------------------- /src/modes/playgame/messaging/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/src/modes/playgame/messaging/mod.rs -------------------------------------------------------------------------------- /src/modes/playgame/messaging/queue_backend.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/src/modes/playgame/messaging/queue_backend.rs -------------------------------------------------------------------------------- /src/modes/playgame/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/src/modes/playgame/mod.rs -------------------------------------------------------------------------------- /src/modes/playgame/play.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/src/modes/playgame/play.rs -------------------------------------------------------------------------------- /src/modes/playgame/render/chunks/chunk.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/src/modes/playgame/render/chunks/chunk.rs -------------------------------------------------------------------------------- /src/modes/playgame/render/chunks/chunks.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/src/modes/playgame/render/chunks/chunks.rs -------------------------------------------------------------------------------- /src/modes/playgame/render/chunks/chunktype.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/src/modes/playgame/render/chunks/chunktype.rs -------------------------------------------------------------------------------- /src/modes/playgame/render/chunks/constants.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/src/modes/playgame/render/chunks/constants.rs -------------------------------------------------------------------------------- /src/modes/playgame/render/chunks/greedy.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/src/modes/playgame/render/chunks/greedy.rs -------------------------------------------------------------------------------- /src/modes/playgame/render/chunks/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/src/modes/playgame/render/chunks/mod.rs -------------------------------------------------------------------------------- /src/modes/playgame/render/gbuffer.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/src/modes/playgame/render/gbuffer.rs -------------------------------------------------------------------------------- /src/modes/playgame/render/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/src/modes/playgame/render/mod.rs -------------------------------------------------------------------------------- /src/modes/playgame/render/models/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/src/modes/playgame/render/models/mod.rs -------------------------------------------------------------------------------- /src/modes/playgame/render/passes/cursors_pass/cubes.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/src/modes/playgame/render/passes/cursors_pass/cubes.rs -------------------------------------------------------------------------------- /src/modes/playgame/render/passes/cursors_pass/cursors.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/src/modes/playgame/render/passes/cursors_pass/cursors.frag -------------------------------------------------------------------------------- /src/modes/playgame/render/passes/cursors_pass/cursors.frag.spv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/src/modes/playgame/render/passes/cursors_pass/cursors.frag.spv -------------------------------------------------------------------------------- /src/modes/playgame/render/passes/cursors_pass/cursors.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/src/modes/playgame/render/passes/cursors_pass/cursors.vert -------------------------------------------------------------------------------- /src/modes/playgame/render/passes/cursors_pass/cursors.vert.spv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/src/modes/playgame/render/passes/cursors_pass/cursors.vert.spv -------------------------------------------------------------------------------- /src/modes/playgame/render/passes/cursors_pass/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/src/modes/playgame/render/passes/cursors_pass/mod.rs -------------------------------------------------------------------------------- /src/modes/playgame/render/passes/grass_pass/grass.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/src/modes/playgame/render/passes/grass_pass/grass.frag -------------------------------------------------------------------------------- /src/modes/playgame/render/passes/grass_pass/grass.frag.spv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/src/modes/playgame/render/passes/grass_pass/grass.frag.spv -------------------------------------------------------------------------------- /src/modes/playgame/render/passes/grass_pass/grass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/src/modes/playgame/render/passes/grass_pass/grass.png -------------------------------------------------------------------------------- /src/modes/playgame/render/passes/grass_pass/grass.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/src/modes/playgame/render/passes/grass_pass/grass.vert -------------------------------------------------------------------------------- /src/modes/playgame/render/passes/grass_pass/grass.vert.spv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/src/modes/playgame/render/passes/grass_pass/grass.vert.spv -------------------------------------------------------------------------------- /src/modes/playgame/render/passes/grass_pass/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/src/modes/playgame/render/passes/grass_pass/mod.rs -------------------------------------------------------------------------------- /src/modes/playgame/render/passes/lighting_pass/light_uniforms.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/src/modes/playgame/render/passes/lighting_pass/light_uniforms.rs -------------------------------------------------------------------------------- /src/modes/playgame/render/passes/lighting_pass/lighting.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/src/modes/playgame/render/passes/lighting_pass/lighting.frag -------------------------------------------------------------------------------- /src/modes/playgame/render/passes/lighting_pass/lighting.frag.spv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/src/modes/playgame/render/passes/lighting_pass/lighting.frag.spv -------------------------------------------------------------------------------- /src/modes/playgame/render/passes/lighting_pass/lighting.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/src/modes/playgame/render/passes/lighting_pass/lighting.vert -------------------------------------------------------------------------------- /src/modes/playgame/render/passes/lighting_pass/lighting.vert.spv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/src/modes/playgame/render/passes/lighting_pass/lighting.vert.spv -------------------------------------------------------------------------------- /src/modes/playgame/render/passes/lighting_pass/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/src/modes/playgame/render/passes/lighting_pass/mod.rs -------------------------------------------------------------------------------- /src/modes/playgame/render/passes/lighting_pass/terrain_lights.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/src/modes/playgame/render/passes/lighting_pass/terrain_lights.rs -------------------------------------------------------------------------------- /src/modes/playgame/render/passes/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/src/modes/playgame/render/passes/mod.rs -------------------------------------------------------------------------------- /src/modes/playgame/render/passes/model_pass/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/src/modes/playgame/render/passes/model_pass/mod.rs -------------------------------------------------------------------------------- /src/modes/playgame/render/passes/model_pass/models.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/src/modes/playgame/render/passes/model_pass/models.frag -------------------------------------------------------------------------------- /src/modes/playgame/render/passes/model_pass/models.frag.spv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/src/modes/playgame/render/passes/model_pass/models.frag.spv -------------------------------------------------------------------------------- /src/modes/playgame/render/passes/model_pass/models.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/src/modes/playgame/render/passes/model_pass/models.vert -------------------------------------------------------------------------------- /src/modes/playgame/render/passes/model_pass/models.vert.spv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/src/modes/playgame/render/passes/model_pass/models.vert.spv -------------------------------------------------------------------------------- /src/modes/playgame/render/passes/terrain_pass/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/src/modes/playgame/render/passes/terrain_pass/mod.rs -------------------------------------------------------------------------------- /src/modes/playgame/render/passes/terrain_pass/terrain.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/src/modes/playgame/render/passes/terrain_pass/terrain.frag -------------------------------------------------------------------------------- /src/modes/playgame/render/passes/terrain_pass/terrain.frag.spv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/src/modes/playgame/render/passes/terrain_pass/terrain.frag.spv -------------------------------------------------------------------------------- /src/modes/playgame/render/passes/terrain_pass/terrain.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/src/modes/playgame/render/passes/terrain_pass/terrain.vert -------------------------------------------------------------------------------- /src/modes/playgame/render/passes/terrain_pass/terrain.vert.spv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/src/modes/playgame/render/passes/terrain_pass/terrain.vert.spv -------------------------------------------------------------------------------- /src/modes/playgame/render/passes/terrain_pass/terrain_textures.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/src/modes/playgame/render/passes/terrain_pass/terrain_textures.rs -------------------------------------------------------------------------------- /src/modes/playgame/render/passes/vox_pass/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/src/modes/playgame/render/passes/vox_pass/mod.rs -------------------------------------------------------------------------------- /src/modes/playgame/render/passes/vox_pass/vox.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/src/modes/playgame/render/passes/vox_pass/vox.frag -------------------------------------------------------------------------------- /src/modes/playgame/render/passes/vox_pass/vox.frag.spv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/src/modes/playgame/render/passes/vox_pass/vox.frag.spv -------------------------------------------------------------------------------- /src/modes/playgame/render/passes/vox_pass/vox.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/src/modes/playgame/render/passes/vox_pass/vox.vert -------------------------------------------------------------------------------- /src/modes/playgame/render/passes/vox_pass/vox.vert.spv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/src/modes/playgame/render/passes/vox_pass/vox.vert.spv -------------------------------------------------------------------------------- /src/modes/playgame/render/voxels/cube.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/src/modes/playgame/render/voxels/cube.rs -------------------------------------------------------------------------------- /src/modes/playgame/render/voxels/greedy.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/src/modes/playgame/render/voxels/greedy.rs -------------------------------------------------------------------------------- /src/modes/playgame/render/voxels/instance_list.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/src/modes/playgame/render/voxels/instance_list.rs -------------------------------------------------------------------------------- /src/modes/playgame/render/voxels/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/src/modes/playgame/render/voxels/mod.rs -------------------------------------------------------------------------------- /src/modes/playgame/render/voxels/modelsize.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/src/modes/playgame/render/voxels/modelsize.rs -------------------------------------------------------------------------------- /src/modes/playgame/render/voxels/voxbuffer.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/src/modes/playgame/render/voxels/voxbuffer.rs -------------------------------------------------------------------------------- /src/modes/playgame/run_state.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/src/modes/playgame/run_state.rs -------------------------------------------------------------------------------- /src/modes/playgame/systems/automatic_reactions.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/src/modes/playgame/systems/automatic_reactions.rs -------------------------------------------------------------------------------- /src/modes/playgame/systems/calendar.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/src/modes/playgame/systems/calendar.rs -------------------------------------------------------------------------------- /src/modes/playgame/systems/camera_control.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/src/modes/playgame/systems/camera_control.rs -------------------------------------------------------------------------------- /src/modes/playgame/systems/component_hauling.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/src/modes/playgame/systems/component_hauling.rs -------------------------------------------------------------------------------- /src/modes/playgame/systems/construct.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/src/modes/playgame/systems/construct.rs -------------------------------------------------------------------------------- /src/modes/playgame/systems/construct_building.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/src/modes/playgame/systems/construct_building.rs -------------------------------------------------------------------------------- /src/modes/playgame/systems/construction_designator.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/src/modes/playgame/systems/construction_designator.rs -------------------------------------------------------------------------------- /src/modes/playgame/systems/construction_map.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/src/modes/playgame/systems/construction_map.rs -------------------------------------------------------------------------------- /src/modes/playgame/systems/end_turn.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/src/modes/playgame/systems/end_turn.rs -------------------------------------------------------------------------------- /src/modes/playgame/systems/initiative.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/src/modes/playgame/systems/initiative.rs -------------------------------------------------------------------------------- /src/modes/playgame/systems/leisure_shift.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/src/modes/playgame/systems/leisure_shift.rs -------------------------------------------------------------------------------- /src/modes/playgame/systems/lumber_map.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/src/modes/playgame/systems/lumber_map.rs -------------------------------------------------------------------------------- /src/modes/playgame/systems/lumberjack.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/src/modes/playgame/systems/lumberjack.rs -------------------------------------------------------------------------------- /src/modes/playgame/systems/mining.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/src/modes/playgame/systems/mining.rs -------------------------------------------------------------------------------- /src/modes/playgame/systems/mining_map.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/src/modes/playgame/systems/mining_map.rs -------------------------------------------------------------------------------- /src/modes/playgame/systems/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/src/modes/playgame/systems/mod.rs -------------------------------------------------------------------------------- /src/modes/playgame/systems/move_randomly.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/src/modes/playgame/systems/move_randomly.rs -------------------------------------------------------------------------------- /src/modes/playgame/systems/pause_control.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/src/modes/playgame/systems/pause_control.rs -------------------------------------------------------------------------------- /src/modes/playgame/systems/reactions.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/src/modes/playgame/systems/reactions.rs -------------------------------------------------------------------------------- /src/modes/playgame/systems/settler_scheduler.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/src/modes/playgame/systems/settler_scheduler.rs -------------------------------------------------------------------------------- /src/modes/playgame/systems/sleep_shift.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/src/modes/playgame/systems/sleep_shift.rs -------------------------------------------------------------------------------- /src/modes/playgame/systems/tool_collection.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/src/modes/playgame/systems/tool_collection.rs -------------------------------------------------------------------------------- /src/modes/playgame/systems/utils/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/src/modes/playgame/systems/utils/mod.rs -------------------------------------------------------------------------------- /src/modes/playgame/systems/utils/toolfinder.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/src/modes/playgame/systems/utils/toolfinder.rs -------------------------------------------------------------------------------- /src/modes/playgame/systems/viewshed.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/src/modes/playgame/systems/viewshed.rs -------------------------------------------------------------------------------- /src/modes/playgame/systems/work_shift.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/src/modes/playgame/systems/work_shift.rs -------------------------------------------------------------------------------- /src/modes/playgame/ui/building_info.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/src/modes/playgame/ui/building_info.rs -------------------------------------------------------------------------------- /src/modes/playgame/ui/design_buildings.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/src/modes/playgame/ui/design_buildings.rs -------------------------------------------------------------------------------- /src/modes/playgame/ui/design_construction.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/src/modes/playgame/ui/design_construction.rs -------------------------------------------------------------------------------- /src/modes/playgame/ui/design_lumberjack.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/src/modes/playgame/ui/design_lumberjack.rs -------------------------------------------------------------------------------- /src/modes/playgame/ui/design_mining.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/src/modes/playgame/ui/design_mining.rs -------------------------------------------------------------------------------- /src/modes/playgame/ui/main_menu.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/src/modes/playgame/ui/main_menu.rs -------------------------------------------------------------------------------- /src/modes/playgame/ui/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/src/modes/playgame/ui/mod.rs -------------------------------------------------------------------------------- /src/modes/playgame/ui/settlers_list.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/src/modes/playgame/ui/settlers_list.rs -------------------------------------------------------------------------------- /src/modes/playgame/ui/tables.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/src/modes/playgame/ui/tables.rs -------------------------------------------------------------------------------- /src/modes/playgame/ui/tooltips.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/src/modes/playgame/ui/tooltips.rs -------------------------------------------------------------------------------- /src/modes/playgame/uniforms/camera.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/src/modes/playgame/uniforms/camera.rs -------------------------------------------------------------------------------- /src/modes/playgame/uniforms/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/src/modes/playgame/uniforms/mod.rs -------------------------------------------------------------------------------- /src/modes/shared_resources.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/src/modes/shared_resources.rs -------------------------------------------------------------------------------- /src/modes/worldgen/gen1.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/src/modes/worldgen/gen1.rs -------------------------------------------------------------------------------- /src/modes/worldgen/gen2.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/src/modes/worldgen/gen2.rs -------------------------------------------------------------------------------- /src/modes/worldgen/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/src/modes/worldgen/mod.rs -------------------------------------------------------------------------------- /src/modes/worldgen/worldgen_uniforms/camera.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/src/modes/worldgen/worldgen_uniforms/camera.rs -------------------------------------------------------------------------------- /src/modes/worldgen/worldgen_uniforms/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebracket/noxfutura/HEAD/src/modes/worldgen/worldgen_uniforms/mod.rs --------------------------------------------------------------------------------