├── .gitattributes ├── .gitignore ├── LICENSE ├── README.md ├── demo ├── Box │ ├── Box.kt │ ├── Box.tscn │ ├── BoxVisuals │ │ ├── BoxModel.glb │ │ ├── BoxModel.glb.import │ │ ├── DestroyedBox.glb │ │ └── DestroyedBox.glb.import │ ├── DestroyedBox.kt │ ├── DestroyedBox.tscn │ └── Sounds │ │ ├── crate-break-1-93926.wav │ │ └── crate-break-1-93926.wav.import ├── CameraMode │ ├── CameraMode.kt │ └── CameraMode.tscn ├── DemoPage │ ├── Assets │ │ ├── BlurShader.gdshader │ │ ├── BlurShader.gdshader.uid │ │ ├── DemoPageBackground.png │ │ ├── DemoPageBackground.png.import │ │ ├── RoundedRectangle.png │ │ ├── RoundedRectangle.png.import │ │ ├── discord-icon.png │ │ ├── discord-icon.png.import │ │ ├── gdquest_logo_white.svg │ │ ├── gdquest_logo_white.svg.import │ │ ├── itch-icon.png │ │ ├── itch-icon.png.import │ │ ├── twitter-icon.png │ │ └── twitter-icon.png.import │ ├── ControllerIcons │ │ ├── buttonStart.png │ │ ├── buttonStart.png.import │ │ ├── down_button.png │ │ ├── down_button.png.import │ │ ├── esc.png │ │ ├── esc.png.import │ │ ├── gamepad.png │ │ ├── gamepad.png.import │ │ ├── joystickL_side.png │ │ ├── joystickL_side.png.import │ │ ├── joystickR_side.png │ │ ├── joystickR_side.png.import │ │ ├── keyboard.png │ │ ├── keyboard.png.import │ │ ├── keyboard.svg.import │ │ ├── l2_button.png │ │ ├── l2_button.png.import │ │ ├── left_button.png │ │ ├── left_button.png.import │ │ ├── minus.png │ │ ├── minus.png.import │ │ ├── mouse.png │ │ ├── mouse.png.import │ │ ├── mouseLeft.png │ │ ├── mouseLeft.png.import │ │ ├── mouseRight.png │ │ ├── mouseRight.png.import │ │ ├── r2_button.png │ │ ├── r2_button.png.import │ │ ├── right_button.png │ │ ├── right_button.png.import │ │ ├── spacebar.png │ │ ├── spacebar.png.import │ │ ├── spacebar2.png │ │ ├── spacebar2.png.import │ │ ├── tab.png │ │ ├── tab.png.import │ │ ├── up_button.png │ │ ├── up_button.png.import │ │ ├── wasd.png │ │ └── wasd.png.import │ ├── DemoPage.kt │ ├── DemoPage.tscn │ ├── Fonts │ │ ├── Montserrat-Bold.ttf │ │ ├── Montserrat-Bold.ttf.import │ │ ├── Montserrat-Medium.ttf │ │ └── Montserrat-Medium.ttf.import │ ├── LinkButton.kt │ ├── discord-icon.svg.import │ ├── itch-icon.svg.import │ └── twitter-icon.svg.import ├── Enemies │ ├── BeeBot.tscn │ ├── BeeBot │ │ ├── BeeRoot.kt │ │ ├── bee_bot.glb │ │ ├── bee_bot.glb.import │ │ ├── bee_root.tscn │ │ ├── bee_wings_shader.gdshader │ │ ├── bee_wings_shader.gdshader.uid │ │ ├── wing_pattern.png │ │ └── wing_pattern.png.import │ ├── Beebot.kt │ ├── Beetle.kt │ ├── Beetle.tscn │ ├── Enemy.kt │ ├── Sounds │ │ ├── mechanical_1.wav │ │ ├── mechanical_1.wav.import │ │ ├── mechanical_2.wav │ │ ├── mechanical_2.wav.import │ │ ├── robot_defeat.wav │ │ └── robot_defeat.wav.import │ ├── beetle_bot │ │ ├── BeetleBotSkin.kt │ │ ├── beetle_bot_fused.glb │ │ ├── beetle_bot_fused.glb.import │ │ ├── beetle_bot_fused_Image.png │ │ ├── beetle_bot_fused_Image.png.import │ │ ├── beetle_bot_fused_beetle_albedo.png │ │ ├── beetle_bot_fused_beetle_albedo.png.import │ │ ├── beetle_bot_fused_beetle_normal.png │ │ ├── beetle_bot_fused_beetle_normal.png.import │ │ ├── beetle_bot_fused_beetle_roughness.png │ │ ├── beetle_bot_fused_beetle_roughness.png.import │ │ ├── beetle_bot_fused_eye_mask.png │ │ ├── beetle_bot_fused_eye_mask.png.import │ │ ├── beetlebot_skin.tscn │ │ └── materials │ │ │ ├── beetlebot_eyes_mat.tres │ │ │ └── beetlebot_lights_mat.tres │ └── smoke_puff │ │ ├── SmokePuff.kt │ │ ├── Sounds │ │ ├── poof_1.wav │ │ ├── poof_1.wav.import │ │ ├── poof_2.wav │ │ └── poof_2.wav.import │ │ ├── smoke_ball.gdshader │ │ ├── smoke_ball.gdshader.uid │ │ ├── smoke_ball.glb │ │ ├── smoke_ball.glb.import │ │ ├── smoke_ball_middle.gdshader │ │ ├── smoke_ball_middle.gdshader.uid │ │ ├── smoke_ball_middle_mat.tres │ │ └── smoke_puff.tscn ├── Environment │ ├── GrassScatter.kt │ ├── Terrain │ │ ├── Textures │ │ │ ├── cliff_mat_albedo.png │ │ │ ├── cliff_mat_albedo.png.import │ │ │ ├── cliff_mat_depth.png │ │ │ ├── cliff_mat_depth.png.import │ │ │ ├── cliff_mat_normal.png │ │ │ ├── cliff_mat_normal.png.import │ │ │ ├── cliff_mat_orm.png │ │ │ ├── cliff_mat_orm.png.import │ │ │ ├── cliff_motif.png │ │ │ ├── cliff_motif.png.import │ │ │ ├── grass_mat_albedo.png │ │ │ ├── grass_mat_albedo.png.import │ │ │ ├── grass_mat_normal.png │ │ │ ├── grass_mat_normal.png.import │ │ │ ├── grass_mat_orm.png │ │ │ ├── grass_mat_orm.png.import │ │ │ ├── ground_mat_albedo.png │ │ │ ├── ground_mat_albedo.png.import │ │ │ ├── ground_mat_normal.png │ │ │ ├── ground_mat_normal.png.import │ │ │ └── voronoi_rock_cliff │ │ │ │ ├── voronoi_rock_cliff_albedo.png │ │ │ │ ├── voronoi_rock_cliff_albedo.png.import │ │ │ │ ├── voronoi_rock_cliff_heightmap.png │ │ │ │ ├── voronoi_rock_cliff_heightmap.png.import │ │ │ │ ├── voronoi_rock_cliff_normal.png │ │ │ │ ├── voronoi_rock_cliff_normal.png.import │ │ │ │ ├── voronoi_rock_cliff_orm.png │ │ │ │ └── voronoi_rock_cliff_orm.png.import │ │ ├── terrain_mat.tres │ │ ├── terrain_shader.gdshader │ │ └── terrain_shader.gdshader.uid │ ├── bushes │ │ ├── bush.obj │ │ ├── bush.obj.import │ │ ├── bush.tscn │ │ ├── bush_wind.gdshader │ │ └── bush_wind.gdshader.uid │ ├── dark_bark │ │ ├── dark_bark.tres │ │ ├── dark_bark_albedo.png │ │ ├── dark_bark_albedo.png.import │ │ ├── dark_bark_heightmap.png │ │ ├── dark_bark_heightmap.png.import │ │ ├── dark_bark_normal.png │ │ ├── dark_bark_normal.png.import │ │ ├── dark_bark_orm.png │ │ └── dark_bark_orm.png.import │ ├── environment.tscn │ ├── environment_navmesh.res │ ├── flowers │ │ ├── flower_patch.gdshader │ │ ├── flower_patch.gdshader.uid │ │ ├── flower_patch.obj │ │ ├── flower_patch.obj.import │ │ ├── flower_patch.tscn │ │ └── textures │ │ │ ├── flower_head_albedo.png │ │ │ ├── flower_head_albedo.png.import │ │ │ ├── flower_head_normal.png │ │ │ └── flower_head_normal.png.import │ ├── grass │ │ ├── GrassChunk.tscn │ │ ├── grass.gdshader │ │ ├── grass.gdshader.uid │ │ ├── grass_1_geo.obj │ │ ├── grass_1_geo.obj.import │ │ ├── grass_mat.tres │ │ └── grass_multimesh.res │ ├── large_tree_trunk │ │ ├── large_tree_trunk.gdshader │ │ ├── large_tree_trunk.gdshader.uid │ │ ├── large_tree_trunk_mat.tres │ │ ├── large_trunk.obj │ │ ├── large_trunk.obj.import │ │ ├── moss │ │ │ ├── moss.tres │ │ │ ├── moss_albedo.png │ │ │ ├── moss_albedo.png.import │ │ │ ├── moss_depth.png │ │ │ ├── moss_depth.png.import │ │ │ ├── moss_normal.png │ │ │ ├── moss_normal.png.import │ │ │ ├── moss_orm.png │ │ │ └── moss_orm.png.import │ │ └── trunk_top │ │ │ ├── trunk_top.tres │ │ │ ├── trunk_top_albedo.png │ │ │ ├── trunk_top_albedo.png.import │ │ │ ├── trunk_top_normal.png │ │ │ ├── trunk_top_normal.png.import │ │ │ ├── trunk_top_orm.png │ │ │ └── trunk_top_orm.png.import │ ├── mushroom │ │ ├── mushroom.glb │ │ ├── mushroom.glb.import │ │ ├── mushroom_mushroom_albedo.png │ │ ├── mushroom_mushroom_albedo.png.import │ │ ├── mushroom_mushroom_normal.png │ │ └── mushroom_mushroom_normal.png.import │ ├── orange_flowers │ │ ├── orange_flower.glb │ │ ├── orange_flower.glb.import │ │ ├── orange_flower.tscn │ │ ├── orange_flower_Image.png │ │ ├── orange_flower_Image.png.import │ │ ├── orange_flower_Image_3.png │ │ ├── orange_flower_Image_3.png.import │ │ ├── orange_flower_flower_blade_albedo.png │ │ ├── orange_flower_flower_blade_albedo.png.import │ │ ├── orange_flower_flower_blade_normal.png │ │ ├── orange_flower_flower_blade_normal.png.import │ │ ├── orange_flower_pink_flower_albedo.png │ │ ├── orange_flower_pink_flower_albedo.png.import │ │ ├── orange_flower_pink_flower_normal.png │ │ └── orange_flower_pink_flower_normal.png.import │ ├── simple_leaves │ │ ├── simple_leaves.tres │ │ ├── simple_leaves_albedo.png │ │ ├── simple_leaves_albedo.png.import │ │ ├── simple_leaves_normal.png │ │ ├── simple_leaves_normal.png.import │ │ ├── simple_leaves_orm.png │ │ └── simple_leaves_orm.png.import │ ├── sky │ │ ├── blue_sky.tres │ │ ├── sky.gdshader │ │ └── sky.gdshader.uid │ ├── terrain.glb │ ├── terrain.glb.import │ ├── terrain_bridge_planks_albedo.png │ ├── terrain_bridge_planks_albedo.png.import │ ├── terrain_bridge_planks_roughness.png │ ├── terrain_bridge_planks_roughness.png.import │ ├── tree_trunk │ │ ├── tree_trunk_long.glb │ │ ├── tree_trunk_long.glb.import │ │ ├── tree_trunk_small.glb │ │ └── tree_trunk_small.glb.import │ ├── trees │ │ ├── simple_bark │ │ │ ├── simple_bark.tres │ │ │ ├── simple_bark_albedo.png │ │ │ ├── simple_bark_albedo.png.import │ │ │ ├── simple_bark_depth.png │ │ │ ├── simple_bark_depth.png.import │ │ │ ├── simple_bark_heightmap.png │ │ │ ├── simple_bark_heightmap.png.import │ │ │ ├── simple_bark_mask.png │ │ │ ├── simple_bark_mask.png.import │ │ │ ├── simple_bark_normal.png │ │ │ ├── simple_bark_normal.png.import │ │ │ ├── simple_bark_orm.png │ │ │ └── simple_bark_orm.png.import │ │ ├── simple_pine_leaves │ │ │ ├── simple_pin_leaves.tres │ │ │ ├── simple_pin_leaves_albedo.png │ │ │ ├── simple_pin_leaves_albedo.png.import │ │ │ ├── simple_pin_leaves_normal.png │ │ │ ├── simple_pin_leaves_normal.png.import │ │ │ ├── simple_pin_leaves_orm.png │ │ │ └── simple_pin_leaves_orm.png.import │ │ ├── tree.obj │ │ ├── tree.obj.import │ │ └── tree.tscn │ ├── water │ │ ├── textures │ │ │ ├── caustic_texture.png │ │ │ └── caustic_texture.png.import │ │ ├── water_shader.gdshader │ │ └── water_shader.gdshader.uid │ └── waterfall │ │ ├── waterfall.gdshader │ │ └── waterfall.gdshader.uid ├── FullScreenHandler.kt ├── JumpingPad │ ├── JumpingPad.kt │ ├── JumpingPad.tscn │ └── JumpingPadVisuals │ │ ├── JumpingPadModel.glb │ │ ├── JumpingPadModel.glb.import │ │ ├── JumpingPadModel.tscn │ │ ├── JumpingPadModel_screen.gdshader │ │ ├── JumpingPadModel_screen.gdshader.uid │ │ ├── JumpingPadModel_screen_mat.tres │ │ ├── cross_sprite.png │ │ └── cross_sprite.png.import ├── Level │ ├── DeathPlane.kt │ ├── Main_navmesh.res │ ├── Music │ │ ├── mountain.mp3 │ │ └── mountain.mp3.import │ ├── Terrain.glb │ ├── Terrain.glb.import │ ├── gridbox_texture.png │ └── gridbox_texture.png.import ├── Main.tscn ├── Player │ ├── Bullet.kt │ ├── Bullet.tscn │ ├── BulletVisuals │ │ ├── BulletModel.obj │ │ ├── BulletModel.obj.import │ │ ├── BulletModel.tscn │ │ ├── bullet_spark_shader.gdshader │ │ ├── bullet_spark_shader.gdshader.uid │ │ ├── bullet_trail_mat.tres │ │ ├── bullet_trail_shader.gdshader │ │ ├── bullet_trail_shader.gdshader.uid │ │ ├── sparks.png │ │ └── sparks.png.import │ ├── CameraController.kt │ ├── CharacterSkin.kt │ ├── CharacterSkin.tscn │ ├── Coin │ │ ├── Audio │ │ │ ├── completetask_0.mp3 │ │ │ └── completetask_0.mp3.import │ │ ├── Coin.kt │ │ ├── Coin.tscn │ │ └── CoinVisuals │ │ │ ├── CoinModel.glb │ │ │ ├── CoinModel.glb.import │ │ │ ├── CoinModel.kt │ │ │ └── CoinModel.tscn │ ├── CoinsContainer.kt │ ├── ExplosionVisuals │ │ ├── explosion_scene.tscn │ │ ├── materials │ │ │ ├── blast_mat.tres │ │ │ ├── particles_mat.tres │ │ │ └── shell_mat.tres │ │ ├── objects │ │ │ ├── disk.obj │ │ │ ├── disk.obj.import │ │ │ ├── explosion_smoke.glb │ │ │ └── explosion_smoke.glb.import │ │ └── shaders │ │ │ ├── blast_shader.gdshader │ │ │ ├── blast_shader.gdshader.uid │ │ │ ├── explosion_trails_shader.gdshader │ │ │ ├── explosion_trails_shader.gdshader.uid │ │ │ ├── shell_shader.gdshader │ │ │ ├── shell_shader.gdshader.uid │ │ │ ├── smoke_shader.gdshader │ │ │ └── smoke_shader.gdshader.uid │ ├── Grenade.kt │ ├── Grenade.tscn │ ├── GrenadeLauncher.kt │ ├── GrenadeLauncher.tscn │ ├── GrenadeVisuals │ │ ├── aim_material.tres │ │ ├── grenade │ │ │ ├── GrenadeVisuals.kt │ │ │ ├── grenade.glb │ │ │ ├── grenade.glb.import │ │ │ ├── grenade.material │ │ │ └── grenade.tscn │ │ ├── shaders │ │ │ ├── grenade_target_shader.gdshader │ │ │ ├── grenade_target_shader.gdshader.uid │ │ │ ├── grenade_trajectory_shader.gdshader │ │ │ └── grenade_trajectory_shader.gdshader.uid │ │ ├── textures │ │ │ ├── direction_arrow.png │ │ │ ├── direction_arrow.png.import │ │ │ ├── target_frame_mask.png │ │ │ ├── target_frame_mask.png.import │ │ │ ├── target_mask.png │ │ │ └── target_mask.png.import │ │ ├── trajectory_material.tres │ │ ├── trajectory_mockup.obj │ │ ├── trajectory_mockup.obj.import │ │ └── trajectory_mockup.tscn │ ├── MeleeAttackArea.kt │ ├── Player.kt │ ├── Player.tscn │ ├── Sounds │ │ ├── 03_Step_grass_03.wav │ │ ├── 03_Step_grass_03.wav.import │ │ ├── 45_Landing_01.wav │ │ ├── 45_Landing_01.wav.import │ │ ├── lasershot-102078.wav │ │ ├── lasershot-102078.wav.import │ │ ├── musket-explosion-6383.wav │ │ └── musket-explosion-6383.wav.import │ ├── face_mat.gdshader │ ├── face_mat.gdshader.uid │ └── model │ │ ├── character_blend_tree.tres │ │ ├── custom_animations │ │ ├── default_heartbeat.tres │ │ └── simple_blink.tres │ │ ├── default_state_machine.tres │ │ ├── faces │ │ ├── closed.png │ │ ├── closed.png.import │ │ ├── open.png │ │ └── open.png.import │ │ ├── gdbot.glb │ │ ├── gdbot.glb.import │ │ └── materials │ │ ├── face_mat.tres │ │ ├── glass_mat.tres │ │ └── heart_core_mat.tres ├── Playground.tscn ├── icons │ ├── Icone.kt │ ├── WeaponUI.kt │ ├── bomb_icon.png │ ├── bomb_icon.png.import │ ├── flash_icon.png │ ├── flash_icon.png.import │ ├── icone.tscn │ └── weapon_ui.tscn └── shared │ ├── Damageable.kt │ ├── eye_mask.png │ ├── eye_mask.png.import │ ├── shaders │ ├── face_mat.gdshader │ ├── face_mat.gdshader.uid │ ├── screen_shader.gdshader │ ├── screen_shader.gdshader.uid │ ├── wireframe.gdshader │ └── wireframe.gdshader.uid │ └── textures │ ├── eye_mask.png │ └── eye_mask.png.import ├── godot_kotlin_configuration.json ├── gradle.properties ├── gradle ├── .gdignore └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── icon.png ├── icon.png.import ├── icon.svg ├── icon.svg.import ├── project.godot ├── scripts ├── Box │ ├── Box.gdj │ └── DestroyedBox.gdj ├── CameraMode │ └── CameraMode.gdj ├── DemoPage │ ├── DemoPage.gdj │ └── LinkButton.gdj ├── Enemies │ ├── BeeBot │ │ └── BeeRoot.gdj │ ├── Beebot.gdj │ ├── Beetle.gdj │ ├── beetleBot │ │ └── BeetleBotSkin.gdj │ └── smoke_puff │ │ └── SmokePuff.gdj ├── Environment │ └── GrassScatter.gdj ├── FullScreenHandler.gdj ├── JumpingPad │ └── JumpingPad.gdj ├── Level │ └── DeathPlane.gdj ├── Player │ ├── Bullet.gdj │ ├── CameraController.gdj │ ├── CharacterSkin.gdj │ ├── Coin │ │ ├── Coin.gdj │ │ └── CoinVisuals │ │ │ └── CoinModel.gdj │ ├── CoinsContainer.gdj │ ├── Grenade.gdj │ ├── GrenadeLauncher.gdj │ ├── GrenadeVisuals │ │ └── grenade │ │ │ └── GrenadeVisuals.gdj │ ├── MeleeAttackArea.gdj │ └── Player.gdj └── icons │ ├── Icone.gdj │ └── WeaponUI.gdj ├── settings.gradle.kts ├── src └── main │ └── resources │ └── META-INF │ └── services │ └── godot.registration.Entry └── static ├── .gdignore ├── cover.webp ├── third-person-character-aiming-grenade.webp └── third-person-shooter-demo.webp /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/README.md -------------------------------------------------------------------------------- /demo/Box/Box.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/Box/Box.kt -------------------------------------------------------------------------------- /demo/Box/Box.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/Box/Box.tscn -------------------------------------------------------------------------------- /demo/Box/BoxVisuals/BoxModel.glb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/Box/BoxVisuals/BoxModel.glb -------------------------------------------------------------------------------- /demo/Box/BoxVisuals/BoxModel.glb.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/Box/BoxVisuals/BoxModel.glb.import -------------------------------------------------------------------------------- /demo/Box/BoxVisuals/DestroyedBox.glb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/Box/BoxVisuals/DestroyedBox.glb -------------------------------------------------------------------------------- /demo/Box/BoxVisuals/DestroyedBox.glb.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/Box/BoxVisuals/DestroyedBox.glb.import -------------------------------------------------------------------------------- /demo/Box/DestroyedBox.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/Box/DestroyedBox.kt -------------------------------------------------------------------------------- /demo/Box/DestroyedBox.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/Box/DestroyedBox.tscn -------------------------------------------------------------------------------- /demo/Box/Sounds/crate-break-1-93926.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/Box/Sounds/crate-break-1-93926.wav -------------------------------------------------------------------------------- /demo/Box/Sounds/crate-break-1-93926.wav.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/Box/Sounds/crate-break-1-93926.wav.import -------------------------------------------------------------------------------- /demo/CameraMode/CameraMode.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/CameraMode/CameraMode.kt -------------------------------------------------------------------------------- /demo/CameraMode/CameraMode.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/CameraMode/CameraMode.tscn -------------------------------------------------------------------------------- /demo/DemoPage/Assets/BlurShader.gdshader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/DemoPage/Assets/BlurShader.gdshader -------------------------------------------------------------------------------- /demo/DemoPage/Assets/BlurShader.gdshader.uid: -------------------------------------------------------------------------------- 1 | uid://dbp8tbyc4kpnm 2 | -------------------------------------------------------------------------------- /demo/DemoPage/Assets/DemoPageBackground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/DemoPage/Assets/DemoPageBackground.png -------------------------------------------------------------------------------- /demo/DemoPage/Assets/DemoPageBackground.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/DemoPage/Assets/DemoPageBackground.png.import -------------------------------------------------------------------------------- /demo/DemoPage/Assets/RoundedRectangle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/DemoPage/Assets/RoundedRectangle.png -------------------------------------------------------------------------------- /demo/DemoPage/Assets/RoundedRectangle.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/DemoPage/Assets/RoundedRectangle.png.import -------------------------------------------------------------------------------- /demo/DemoPage/Assets/discord-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/DemoPage/Assets/discord-icon.png -------------------------------------------------------------------------------- /demo/DemoPage/Assets/discord-icon.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/DemoPage/Assets/discord-icon.png.import -------------------------------------------------------------------------------- /demo/DemoPage/Assets/gdquest_logo_white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/DemoPage/Assets/gdquest_logo_white.svg -------------------------------------------------------------------------------- /demo/DemoPage/Assets/gdquest_logo_white.svg.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/DemoPage/Assets/gdquest_logo_white.svg.import -------------------------------------------------------------------------------- /demo/DemoPage/Assets/itch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/DemoPage/Assets/itch-icon.png -------------------------------------------------------------------------------- /demo/DemoPage/Assets/itch-icon.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/DemoPage/Assets/itch-icon.png.import -------------------------------------------------------------------------------- /demo/DemoPage/Assets/twitter-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/DemoPage/Assets/twitter-icon.png -------------------------------------------------------------------------------- /demo/DemoPage/Assets/twitter-icon.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/DemoPage/Assets/twitter-icon.png.import -------------------------------------------------------------------------------- /demo/DemoPage/ControllerIcons/buttonStart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/DemoPage/ControllerIcons/buttonStart.png -------------------------------------------------------------------------------- /demo/DemoPage/ControllerIcons/buttonStart.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/DemoPage/ControllerIcons/buttonStart.png.import -------------------------------------------------------------------------------- /demo/DemoPage/ControllerIcons/down_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/DemoPage/ControllerIcons/down_button.png -------------------------------------------------------------------------------- /demo/DemoPage/ControllerIcons/down_button.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/DemoPage/ControllerIcons/down_button.png.import -------------------------------------------------------------------------------- /demo/DemoPage/ControllerIcons/esc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/DemoPage/ControllerIcons/esc.png -------------------------------------------------------------------------------- /demo/DemoPage/ControllerIcons/esc.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/DemoPage/ControllerIcons/esc.png.import -------------------------------------------------------------------------------- /demo/DemoPage/ControllerIcons/gamepad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/DemoPage/ControllerIcons/gamepad.png -------------------------------------------------------------------------------- /demo/DemoPage/ControllerIcons/gamepad.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/DemoPage/ControllerIcons/gamepad.png.import -------------------------------------------------------------------------------- /demo/DemoPage/ControllerIcons/joystickL_side.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/DemoPage/ControllerIcons/joystickL_side.png -------------------------------------------------------------------------------- /demo/DemoPage/ControllerIcons/joystickL_side.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/DemoPage/ControllerIcons/joystickL_side.png.import -------------------------------------------------------------------------------- /demo/DemoPage/ControllerIcons/joystickR_side.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/DemoPage/ControllerIcons/joystickR_side.png -------------------------------------------------------------------------------- /demo/DemoPage/ControllerIcons/joystickR_side.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/DemoPage/ControllerIcons/joystickR_side.png.import -------------------------------------------------------------------------------- /demo/DemoPage/ControllerIcons/keyboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/DemoPage/ControllerIcons/keyboard.png -------------------------------------------------------------------------------- /demo/DemoPage/ControllerIcons/keyboard.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/DemoPage/ControllerIcons/keyboard.png.import -------------------------------------------------------------------------------- /demo/DemoPage/ControllerIcons/keyboard.svg.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/DemoPage/ControllerIcons/keyboard.svg.import -------------------------------------------------------------------------------- /demo/DemoPage/ControllerIcons/l2_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/DemoPage/ControllerIcons/l2_button.png -------------------------------------------------------------------------------- /demo/DemoPage/ControllerIcons/l2_button.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/DemoPage/ControllerIcons/l2_button.png.import -------------------------------------------------------------------------------- /demo/DemoPage/ControllerIcons/left_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/DemoPage/ControllerIcons/left_button.png -------------------------------------------------------------------------------- /demo/DemoPage/ControllerIcons/left_button.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/DemoPage/ControllerIcons/left_button.png.import -------------------------------------------------------------------------------- /demo/DemoPage/ControllerIcons/minus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/DemoPage/ControllerIcons/minus.png -------------------------------------------------------------------------------- /demo/DemoPage/ControllerIcons/minus.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/DemoPage/ControllerIcons/minus.png.import -------------------------------------------------------------------------------- /demo/DemoPage/ControllerIcons/mouse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/DemoPage/ControllerIcons/mouse.png -------------------------------------------------------------------------------- /demo/DemoPage/ControllerIcons/mouse.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/DemoPage/ControllerIcons/mouse.png.import -------------------------------------------------------------------------------- /demo/DemoPage/ControllerIcons/mouseLeft.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/DemoPage/ControllerIcons/mouseLeft.png -------------------------------------------------------------------------------- /demo/DemoPage/ControllerIcons/mouseLeft.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/DemoPage/ControllerIcons/mouseLeft.png.import -------------------------------------------------------------------------------- /demo/DemoPage/ControllerIcons/mouseRight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/DemoPage/ControllerIcons/mouseRight.png -------------------------------------------------------------------------------- /demo/DemoPage/ControllerIcons/mouseRight.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/DemoPage/ControllerIcons/mouseRight.png.import -------------------------------------------------------------------------------- /demo/DemoPage/ControllerIcons/r2_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/DemoPage/ControllerIcons/r2_button.png -------------------------------------------------------------------------------- /demo/DemoPage/ControllerIcons/r2_button.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/DemoPage/ControllerIcons/r2_button.png.import -------------------------------------------------------------------------------- /demo/DemoPage/ControllerIcons/right_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/DemoPage/ControllerIcons/right_button.png -------------------------------------------------------------------------------- /demo/DemoPage/ControllerIcons/right_button.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/DemoPage/ControllerIcons/right_button.png.import -------------------------------------------------------------------------------- /demo/DemoPage/ControllerIcons/spacebar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/DemoPage/ControllerIcons/spacebar.png -------------------------------------------------------------------------------- /demo/DemoPage/ControllerIcons/spacebar.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/DemoPage/ControllerIcons/spacebar.png.import -------------------------------------------------------------------------------- /demo/DemoPage/ControllerIcons/spacebar2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/DemoPage/ControllerIcons/spacebar2.png -------------------------------------------------------------------------------- /demo/DemoPage/ControllerIcons/spacebar2.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/DemoPage/ControllerIcons/spacebar2.png.import -------------------------------------------------------------------------------- /demo/DemoPage/ControllerIcons/tab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/DemoPage/ControllerIcons/tab.png -------------------------------------------------------------------------------- /demo/DemoPage/ControllerIcons/tab.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/DemoPage/ControllerIcons/tab.png.import -------------------------------------------------------------------------------- /demo/DemoPage/ControllerIcons/up_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/DemoPage/ControllerIcons/up_button.png -------------------------------------------------------------------------------- /demo/DemoPage/ControllerIcons/up_button.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/DemoPage/ControllerIcons/up_button.png.import -------------------------------------------------------------------------------- /demo/DemoPage/ControllerIcons/wasd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/DemoPage/ControllerIcons/wasd.png -------------------------------------------------------------------------------- /demo/DemoPage/ControllerIcons/wasd.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/DemoPage/ControllerIcons/wasd.png.import -------------------------------------------------------------------------------- /demo/DemoPage/DemoPage.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/DemoPage/DemoPage.kt -------------------------------------------------------------------------------- /demo/DemoPage/DemoPage.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/DemoPage/DemoPage.tscn -------------------------------------------------------------------------------- /demo/DemoPage/Fonts/Montserrat-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/DemoPage/Fonts/Montserrat-Bold.ttf -------------------------------------------------------------------------------- /demo/DemoPage/Fonts/Montserrat-Bold.ttf.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/DemoPage/Fonts/Montserrat-Bold.ttf.import -------------------------------------------------------------------------------- /demo/DemoPage/Fonts/Montserrat-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/DemoPage/Fonts/Montserrat-Medium.ttf -------------------------------------------------------------------------------- /demo/DemoPage/Fonts/Montserrat-Medium.ttf.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/DemoPage/Fonts/Montserrat-Medium.ttf.import -------------------------------------------------------------------------------- /demo/DemoPage/LinkButton.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/DemoPage/LinkButton.kt -------------------------------------------------------------------------------- /demo/DemoPage/discord-icon.svg.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/DemoPage/discord-icon.svg.import -------------------------------------------------------------------------------- /demo/DemoPage/itch-icon.svg.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/DemoPage/itch-icon.svg.import -------------------------------------------------------------------------------- /demo/DemoPage/twitter-icon.svg.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/DemoPage/twitter-icon.svg.import -------------------------------------------------------------------------------- /demo/Enemies/BeeBot.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/Enemies/BeeBot.tscn -------------------------------------------------------------------------------- /demo/Enemies/BeeBot/BeeRoot.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/Enemies/BeeBot/BeeRoot.kt -------------------------------------------------------------------------------- /demo/Enemies/BeeBot/bee_bot.glb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/Enemies/BeeBot/bee_bot.glb -------------------------------------------------------------------------------- /demo/Enemies/BeeBot/bee_bot.glb.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/Enemies/BeeBot/bee_bot.glb.import -------------------------------------------------------------------------------- /demo/Enemies/BeeBot/bee_root.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/Enemies/BeeBot/bee_root.tscn -------------------------------------------------------------------------------- /demo/Enemies/BeeBot/bee_wings_shader.gdshader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/Enemies/BeeBot/bee_wings_shader.gdshader -------------------------------------------------------------------------------- /demo/Enemies/BeeBot/bee_wings_shader.gdshader.uid: -------------------------------------------------------------------------------- 1 | uid://bqqy2ic1resuk 2 | -------------------------------------------------------------------------------- /demo/Enemies/BeeBot/wing_pattern.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/Enemies/BeeBot/wing_pattern.png -------------------------------------------------------------------------------- /demo/Enemies/BeeBot/wing_pattern.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/Enemies/BeeBot/wing_pattern.png.import -------------------------------------------------------------------------------- /demo/Enemies/Beebot.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/Enemies/Beebot.kt -------------------------------------------------------------------------------- /demo/Enemies/Beetle.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/Enemies/Beetle.kt -------------------------------------------------------------------------------- /demo/Enemies/Beetle.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/Enemies/Beetle.tscn -------------------------------------------------------------------------------- /demo/Enemies/Enemy.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/Enemies/Enemy.kt -------------------------------------------------------------------------------- /demo/Enemies/Sounds/mechanical_1.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/Enemies/Sounds/mechanical_1.wav -------------------------------------------------------------------------------- /demo/Enemies/Sounds/mechanical_1.wav.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/Enemies/Sounds/mechanical_1.wav.import -------------------------------------------------------------------------------- /demo/Enemies/Sounds/mechanical_2.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/Enemies/Sounds/mechanical_2.wav -------------------------------------------------------------------------------- /demo/Enemies/Sounds/mechanical_2.wav.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/Enemies/Sounds/mechanical_2.wav.import -------------------------------------------------------------------------------- /demo/Enemies/Sounds/robot_defeat.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/Enemies/Sounds/robot_defeat.wav -------------------------------------------------------------------------------- /demo/Enemies/Sounds/robot_defeat.wav.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/Enemies/Sounds/robot_defeat.wav.import -------------------------------------------------------------------------------- /demo/Enemies/beetle_bot/BeetleBotSkin.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/Enemies/beetle_bot/BeetleBotSkin.kt -------------------------------------------------------------------------------- /demo/Enemies/beetle_bot/beetle_bot_fused.glb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/Enemies/beetle_bot/beetle_bot_fused.glb -------------------------------------------------------------------------------- /demo/Enemies/beetle_bot/beetle_bot_fused.glb.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/Enemies/beetle_bot/beetle_bot_fused.glb.import -------------------------------------------------------------------------------- /demo/Enemies/beetle_bot/beetle_bot_fused_Image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/Enemies/beetle_bot/beetle_bot_fused_Image.png -------------------------------------------------------------------------------- /demo/Enemies/beetle_bot/beetle_bot_fused_Image.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/Enemies/beetle_bot/beetle_bot_fused_Image.png.import -------------------------------------------------------------------------------- /demo/Enemies/beetle_bot/beetle_bot_fused_beetle_albedo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/Enemies/beetle_bot/beetle_bot_fused_beetle_albedo.png -------------------------------------------------------------------------------- /demo/Enemies/beetle_bot/beetle_bot_fused_beetle_albedo.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/Enemies/beetle_bot/beetle_bot_fused_beetle_albedo.png.import -------------------------------------------------------------------------------- /demo/Enemies/beetle_bot/beetle_bot_fused_beetle_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/Enemies/beetle_bot/beetle_bot_fused_beetle_normal.png -------------------------------------------------------------------------------- /demo/Enemies/beetle_bot/beetle_bot_fused_beetle_normal.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/Enemies/beetle_bot/beetle_bot_fused_beetle_normal.png.import -------------------------------------------------------------------------------- /demo/Enemies/beetle_bot/beetle_bot_fused_beetle_roughness.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/Enemies/beetle_bot/beetle_bot_fused_beetle_roughness.png -------------------------------------------------------------------------------- /demo/Enemies/beetle_bot/beetle_bot_fused_beetle_roughness.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/Enemies/beetle_bot/beetle_bot_fused_beetle_roughness.png.import -------------------------------------------------------------------------------- /demo/Enemies/beetle_bot/beetle_bot_fused_eye_mask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/Enemies/beetle_bot/beetle_bot_fused_eye_mask.png -------------------------------------------------------------------------------- /demo/Enemies/beetle_bot/beetle_bot_fused_eye_mask.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/Enemies/beetle_bot/beetle_bot_fused_eye_mask.png.import -------------------------------------------------------------------------------- /demo/Enemies/beetle_bot/beetlebot_skin.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/Enemies/beetle_bot/beetlebot_skin.tscn -------------------------------------------------------------------------------- /demo/Enemies/beetle_bot/materials/beetlebot_eyes_mat.tres: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/Enemies/beetle_bot/materials/beetlebot_eyes_mat.tres -------------------------------------------------------------------------------- /demo/Enemies/beetle_bot/materials/beetlebot_lights_mat.tres: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/Enemies/beetle_bot/materials/beetlebot_lights_mat.tres -------------------------------------------------------------------------------- /demo/Enemies/smoke_puff/SmokePuff.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/Enemies/smoke_puff/SmokePuff.kt -------------------------------------------------------------------------------- /demo/Enemies/smoke_puff/Sounds/poof_1.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/Enemies/smoke_puff/Sounds/poof_1.wav -------------------------------------------------------------------------------- /demo/Enemies/smoke_puff/Sounds/poof_1.wav.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/Enemies/smoke_puff/Sounds/poof_1.wav.import -------------------------------------------------------------------------------- /demo/Enemies/smoke_puff/Sounds/poof_2.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/Enemies/smoke_puff/Sounds/poof_2.wav -------------------------------------------------------------------------------- /demo/Enemies/smoke_puff/Sounds/poof_2.wav.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/Enemies/smoke_puff/Sounds/poof_2.wav.import -------------------------------------------------------------------------------- /demo/Enemies/smoke_puff/smoke_ball.gdshader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/Enemies/smoke_puff/smoke_ball.gdshader -------------------------------------------------------------------------------- /demo/Enemies/smoke_puff/smoke_ball.gdshader.uid: -------------------------------------------------------------------------------- 1 | uid://dx7t7n5gqn06s 2 | -------------------------------------------------------------------------------- /demo/Enemies/smoke_puff/smoke_ball.glb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/Enemies/smoke_puff/smoke_ball.glb -------------------------------------------------------------------------------- /demo/Enemies/smoke_puff/smoke_ball.glb.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/Enemies/smoke_puff/smoke_ball.glb.import -------------------------------------------------------------------------------- /demo/Enemies/smoke_puff/smoke_ball_middle.gdshader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/Enemies/smoke_puff/smoke_ball_middle.gdshader -------------------------------------------------------------------------------- /demo/Enemies/smoke_puff/smoke_ball_middle.gdshader.uid: -------------------------------------------------------------------------------- 1 | uid://dn2r6llj8rby1 2 | -------------------------------------------------------------------------------- /demo/Enemies/smoke_puff/smoke_ball_middle_mat.tres: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/Enemies/smoke_puff/smoke_ball_middle_mat.tres -------------------------------------------------------------------------------- /demo/Enemies/smoke_puff/smoke_puff.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/Enemies/smoke_puff/smoke_puff.tscn -------------------------------------------------------------------------------- /demo/Environment/GrassScatter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/Environment/GrassScatter.kt -------------------------------------------------------------------------------- /demo/Environment/Terrain/Textures/cliff_mat_albedo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/Environment/Terrain/Textures/cliff_mat_albedo.png -------------------------------------------------------------------------------- /demo/Environment/Terrain/Textures/cliff_mat_albedo.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/Environment/Terrain/Textures/cliff_mat_albedo.png.import -------------------------------------------------------------------------------- /demo/Environment/Terrain/Textures/cliff_mat_depth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/Environment/Terrain/Textures/cliff_mat_depth.png -------------------------------------------------------------------------------- /demo/Environment/Terrain/Textures/cliff_mat_depth.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/Environment/Terrain/Textures/cliff_mat_depth.png.import -------------------------------------------------------------------------------- /demo/Environment/Terrain/Textures/cliff_mat_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/Environment/Terrain/Textures/cliff_mat_normal.png -------------------------------------------------------------------------------- /demo/Environment/Terrain/Textures/cliff_mat_normal.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/Environment/Terrain/Textures/cliff_mat_normal.png.import -------------------------------------------------------------------------------- /demo/Environment/Terrain/Textures/cliff_mat_orm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/Environment/Terrain/Textures/cliff_mat_orm.png -------------------------------------------------------------------------------- /demo/Environment/Terrain/Textures/cliff_mat_orm.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/Environment/Terrain/Textures/cliff_mat_orm.png.import -------------------------------------------------------------------------------- /demo/Environment/Terrain/Textures/cliff_motif.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/Environment/Terrain/Textures/cliff_motif.png -------------------------------------------------------------------------------- /demo/Environment/Terrain/Textures/cliff_motif.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/Environment/Terrain/Textures/cliff_motif.png.import -------------------------------------------------------------------------------- /demo/Environment/Terrain/Textures/grass_mat_albedo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/Environment/Terrain/Textures/grass_mat_albedo.png -------------------------------------------------------------------------------- /demo/Environment/Terrain/Textures/grass_mat_albedo.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/Environment/Terrain/Textures/grass_mat_albedo.png.import -------------------------------------------------------------------------------- /demo/Environment/Terrain/Textures/grass_mat_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/Environment/Terrain/Textures/grass_mat_normal.png -------------------------------------------------------------------------------- /demo/Environment/Terrain/Textures/grass_mat_normal.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/Environment/Terrain/Textures/grass_mat_normal.png.import -------------------------------------------------------------------------------- /demo/Environment/Terrain/Textures/grass_mat_orm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/Environment/Terrain/Textures/grass_mat_orm.png -------------------------------------------------------------------------------- /demo/Environment/Terrain/Textures/grass_mat_orm.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/Environment/Terrain/Textures/grass_mat_orm.png.import -------------------------------------------------------------------------------- /demo/Environment/Terrain/Textures/ground_mat_albedo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/Environment/Terrain/Textures/ground_mat_albedo.png -------------------------------------------------------------------------------- /demo/Environment/Terrain/Textures/ground_mat_albedo.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/Environment/Terrain/Textures/ground_mat_albedo.png.import -------------------------------------------------------------------------------- /demo/Environment/Terrain/Textures/ground_mat_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/Environment/Terrain/Textures/ground_mat_normal.png -------------------------------------------------------------------------------- /demo/Environment/Terrain/Textures/ground_mat_normal.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/Environment/Terrain/Textures/ground_mat_normal.png.import -------------------------------------------------------------------------------- /demo/Environment/Terrain/Textures/voronoi_rock_cliff/voronoi_rock_cliff_albedo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/Environment/Terrain/Textures/voronoi_rock_cliff/voronoi_rock_cliff_albedo.png -------------------------------------------------------------------------------- /demo/Environment/Terrain/Textures/voronoi_rock_cliff/voronoi_rock_cliff_albedo.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/Environment/Terrain/Textures/voronoi_rock_cliff/voronoi_rock_cliff_albedo.png.import -------------------------------------------------------------------------------- /demo/Environment/Terrain/Textures/voronoi_rock_cliff/voronoi_rock_cliff_heightmap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/Environment/Terrain/Textures/voronoi_rock_cliff/voronoi_rock_cliff_heightmap.png -------------------------------------------------------------------------------- /demo/Environment/Terrain/Textures/voronoi_rock_cliff/voronoi_rock_cliff_heightmap.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/Environment/Terrain/Textures/voronoi_rock_cliff/voronoi_rock_cliff_heightmap.png.import -------------------------------------------------------------------------------- /demo/Environment/Terrain/Textures/voronoi_rock_cliff/voronoi_rock_cliff_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/Environment/Terrain/Textures/voronoi_rock_cliff/voronoi_rock_cliff_normal.png -------------------------------------------------------------------------------- /demo/Environment/Terrain/Textures/voronoi_rock_cliff/voronoi_rock_cliff_normal.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/Environment/Terrain/Textures/voronoi_rock_cliff/voronoi_rock_cliff_normal.png.import -------------------------------------------------------------------------------- /demo/Environment/Terrain/Textures/voronoi_rock_cliff/voronoi_rock_cliff_orm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/Environment/Terrain/Textures/voronoi_rock_cliff/voronoi_rock_cliff_orm.png -------------------------------------------------------------------------------- /demo/Environment/Terrain/Textures/voronoi_rock_cliff/voronoi_rock_cliff_orm.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/Environment/Terrain/Textures/voronoi_rock_cliff/voronoi_rock_cliff_orm.png.import -------------------------------------------------------------------------------- /demo/Environment/Terrain/terrain_mat.tres: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/Environment/Terrain/terrain_mat.tres -------------------------------------------------------------------------------- /demo/Environment/Terrain/terrain_shader.gdshader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/Environment/Terrain/terrain_shader.gdshader -------------------------------------------------------------------------------- /demo/Environment/Terrain/terrain_shader.gdshader.uid: -------------------------------------------------------------------------------- 1 | uid://c56yslegfh621 2 | -------------------------------------------------------------------------------- /demo/Environment/bushes/bush.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/Environment/bushes/bush.obj -------------------------------------------------------------------------------- /demo/Environment/bushes/bush.obj.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/Environment/bushes/bush.obj.import -------------------------------------------------------------------------------- /demo/Environment/bushes/bush.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/Environment/bushes/bush.tscn -------------------------------------------------------------------------------- /demo/Environment/bushes/bush_wind.gdshader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/Environment/bushes/bush_wind.gdshader -------------------------------------------------------------------------------- /demo/Environment/bushes/bush_wind.gdshader.uid: -------------------------------------------------------------------------------- 1 | uid://dw3417x0cjnp1 2 | -------------------------------------------------------------------------------- /demo/Environment/dark_bark/dark_bark.tres: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/Environment/dark_bark/dark_bark.tres -------------------------------------------------------------------------------- /demo/Environment/dark_bark/dark_bark_albedo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/Environment/dark_bark/dark_bark_albedo.png -------------------------------------------------------------------------------- /demo/Environment/dark_bark/dark_bark_albedo.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/Environment/dark_bark/dark_bark_albedo.png.import -------------------------------------------------------------------------------- /demo/Environment/dark_bark/dark_bark_heightmap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/Environment/dark_bark/dark_bark_heightmap.png -------------------------------------------------------------------------------- /demo/Environment/dark_bark/dark_bark_heightmap.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/Environment/dark_bark/dark_bark_heightmap.png.import -------------------------------------------------------------------------------- /demo/Environment/dark_bark/dark_bark_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/Environment/dark_bark/dark_bark_normal.png -------------------------------------------------------------------------------- /demo/Environment/dark_bark/dark_bark_normal.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/Environment/dark_bark/dark_bark_normal.png.import -------------------------------------------------------------------------------- /demo/Environment/dark_bark/dark_bark_orm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/Environment/dark_bark/dark_bark_orm.png -------------------------------------------------------------------------------- /demo/Environment/dark_bark/dark_bark_orm.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/Environment/dark_bark/dark_bark_orm.png.import -------------------------------------------------------------------------------- /demo/Environment/environment.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/Environment/environment.tscn -------------------------------------------------------------------------------- /demo/Environment/environment_navmesh.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/Environment/environment_navmesh.res -------------------------------------------------------------------------------- /demo/Environment/flowers/flower_patch.gdshader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/Environment/flowers/flower_patch.gdshader -------------------------------------------------------------------------------- /demo/Environment/flowers/flower_patch.gdshader.uid: -------------------------------------------------------------------------------- 1 | uid://cf2n1gay8t7se 2 | -------------------------------------------------------------------------------- /demo/Environment/flowers/flower_patch.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/Environment/flowers/flower_patch.obj -------------------------------------------------------------------------------- /demo/Environment/flowers/flower_patch.obj.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/Environment/flowers/flower_patch.obj.import -------------------------------------------------------------------------------- /demo/Environment/flowers/flower_patch.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/Environment/flowers/flower_patch.tscn -------------------------------------------------------------------------------- /demo/Environment/flowers/textures/flower_head_albedo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/Environment/flowers/textures/flower_head_albedo.png -------------------------------------------------------------------------------- /demo/Environment/flowers/textures/flower_head_albedo.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/Environment/flowers/textures/flower_head_albedo.png.import -------------------------------------------------------------------------------- /demo/Environment/flowers/textures/flower_head_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/Environment/flowers/textures/flower_head_normal.png -------------------------------------------------------------------------------- /demo/Environment/flowers/textures/flower_head_normal.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/Environment/flowers/textures/flower_head_normal.png.import -------------------------------------------------------------------------------- /demo/Environment/grass/GrassChunk.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/Environment/grass/GrassChunk.tscn -------------------------------------------------------------------------------- /demo/Environment/grass/grass.gdshader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/Environment/grass/grass.gdshader -------------------------------------------------------------------------------- /demo/Environment/grass/grass.gdshader.uid: -------------------------------------------------------------------------------- 1 | uid://b5ctos2lmrvga 2 | -------------------------------------------------------------------------------- /demo/Environment/grass/grass_1_geo.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/Environment/grass/grass_1_geo.obj -------------------------------------------------------------------------------- /demo/Environment/grass/grass_1_geo.obj.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/Environment/grass/grass_1_geo.obj.import -------------------------------------------------------------------------------- /demo/Environment/grass/grass_mat.tres: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/Environment/grass/grass_mat.tres -------------------------------------------------------------------------------- /demo/Environment/grass/grass_multimesh.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/Environment/grass/grass_multimesh.res -------------------------------------------------------------------------------- /demo/Environment/large_tree_trunk/large_tree_trunk.gdshader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/Environment/large_tree_trunk/large_tree_trunk.gdshader -------------------------------------------------------------------------------- /demo/Environment/large_tree_trunk/large_tree_trunk.gdshader.uid: -------------------------------------------------------------------------------- 1 | uid://dkripqal7duq3 2 | -------------------------------------------------------------------------------- /demo/Environment/large_tree_trunk/large_tree_trunk_mat.tres: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/Environment/large_tree_trunk/large_tree_trunk_mat.tres -------------------------------------------------------------------------------- /demo/Environment/large_tree_trunk/large_trunk.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/Environment/large_tree_trunk/large_trunk.obj -------------------------------------------------------------------------------- /demo/Environment/large_tree_trunk/large_trunk.obj.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/Environment/large_tree_trunk/large_trunk.obj.import -------------------------------------------------------------------------------- /demo/Environment/large_tree_trunk/moss/moss.tres: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/Environment/large_tree_trunk/moss/moss.tres -------------------------------------------------------------------------------- /demo/Environment/large_tree_trunk/moss/moss_albedo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/Environment/large_tree_trunk/moss/moss_albedo.png -------------------------------------------------------------------------------- /demo/Environment/large_tree_trunk/moss/moss_albedo.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/Environment/large_tree_trunk/moss/moss_albedo.png.import -------------------------------------------------------------------------------- /demo/Environment/large_tree_trunk/moss/moss_depth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/Environment/large_tree_trunk/moss/moss_depth.png -------------------------------------------------------------------------------- /demo/Environment/large_tree_trunk/moss/moss_depth.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/Environment/large_tree_trunk/moss/moss_depth.png.import -------------------------------------------------------------------------------- /demo/Environment/large_tree_trunk/moss/moss_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/Environment/large_tree_trunk/moss/moss_normal.png -------------------------------------------------------------------------------- /demo/Environment/large_tree_trunk/moss/moss_normal.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/Environment/large_tree_trunk/moss/moss_normal.png.import -------------------------------------------------------------------------------- /demo/Environment/large_tree_trunk/moss/moss_orm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/Environment/large_tree_trunk/moss/moss_orm.png -------------------------------------------------------------------------------- /demo/Environment/large_tree_trunk/moss/moss_orm.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/Environment/large_tree_trunk/moss/moss_orm.png.import -------------------------------------------------------------------------------- /demo/Environment/large_tree_trunk/trunk_top/trunk_top.tres: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/Environment/large_tree_trunk/trunk_top/trunk_top.tres -------------------------------------------------------------------------------- /demo/Environment/large_tree_trunk/trunk_top/trunk_top_albedo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/Environment/large_tree_trunk/trunk_top/trunk_top_albedo.png -------------------------------------------------------------------------------- /demo/Environment/large_tree_trunk/trunk_top/trunk_top_albedo.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/Environment/large_tree_trunk/trunk_top/trunk_top_albedo.png.import -------------------------------------------------------------------------------- /demo/Environment/large_tree_trunk/trunk_top/trunk_top_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/Environment/large_tree_trunk/trunk_top/trunk_top_normal.png -------------------------------------------------------------------------------- /demo/Environment/large_tree_trunk/trunk_top/trunk_top_normal.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/Environment/large_tree_trunk/trunk_top/trunk_top_normal.png.import -------------------------------------------------------------------------------- /demo/Environment/large_tree_trunk/trunk_top/trunk_top_orm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/Environment/large_tree_trunk/trunk_top/trunk_top_orm.png -------------------------------------------------------------------------------- /demo/Environment/large_tree_trunk/trunk_top/trunk_top_orm.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/Environment/large_tree_trunk/trunk_top/trunk_top_orm.png.import -------------------------------------------------------------------------------- /demo/Environment/mushroom/mushroom.glb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/Environment/mushroom/mushroom.glb -------------------------------------------------------------------------------- /demo/Environment/mushroom/mushroom.glb.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/Environment/mushroom/mushroom.glb.import -------------------------------------------------------------------------------- /demo/Environment/mushroom/mushroom_mushroom_albedo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/Environment/mushroom/mushroom_mushroom_albedo.png -------------------------------------------------------------------------------- /demo/Environment/mushroom/mushroom_mushroom_albedo.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/Environment/mushroom/mushroom_mushroom_albedo.png.import -------------------------------------------------------------------------------- /demo/Environment/mushroom/mushroom_mushroom_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/Environment/mushroom/mushroom_mushroom_normal.png -------------------------------------------------------------------------------- /demo/Environment/mushroom/mushroom_mushroom_normal.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/Environment/mushroom/mushroom_mushroom_normal.png.import -------------------------------------------------------------------------------- /demo/Environment/orange_flowers/orange_flower.glb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/Environment/orange_flowers/orange_flower.glb -------------------------------------------------------------------------------- /demo/Environment/orange_flowers/orange_flower.glb.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/Environment/orange_flowers/orange_flower.glb.import -------------------------------------------------------------------------------- /demo/Environment/orange_flowers/orange_flower.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/Environment/orange_flowers/orange_flower.tscn -------------------------------------------------------------------------------- /demo/Environment/orange_flowers/orange_flower_Image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/Environment/orange_flowers/orange_flower_Image.png -------------------------------------------------------------------------------- /demo/Environment/orange_flowers/orange_flower_Image.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/Environment/orange_flowers/orange_flower_Image.png.import -------------------------------------------------------------------------------- /demo/Environment/orange_flowers/orange_flower_Image_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/Environment/orange_flowers/orange_flower_Image_3.png -------------------------------------------------------------------------------- /demo/Environment/orange_flowers/orange_flower_Image_3.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/Environment/orange_flowers/orange_flower_Image_3.png.import -------------------------------------------------------------------------------- /demo/Environment/orange_flowers/orange_flower_flower_blade_albedo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/Environment/orange_flowers/orange_flower_flower_blade_albedo.png -------------------------------------------------------------------------------- /demo/Environment/orange_flowers/orange_flower_flower_blade_albedo.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/Environment/orange_flowers/orange_flower_flower_blade_albedo.png.import -------------------------------------------------------------------------------- /demo/Environment/orange_flowers/orange_flower_flower_blade_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/Environment/orange_flowers/orange_flower_flower_blade_normal.png -------------------------------------------------------------------------------- /demo/Environment/orange_flowers/orange_flower_flower_blade_normal.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/Environment/orange_flowers/orange_flower_flower_blade_normal.png.import -------------------------------------------------------------------------------- /demo/Environment/orange_flowers/orange_flower_pink_flower_albedo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/Environment/orange_flowers/orange_flower_pink_flower_albedo.png -------------------------------------------------------------------------------- /demo/Environment/orange_flowers/orange_flower_pink_flower_albedo.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/Environment/orange_flowers/orange_flower_pink_flower_albedo.png.import -------------------------------------------------------------------------------- /demo/Environment/orange_flowers/orange_flower_pink_flower_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/Environment/orange_flowers/orange_flower_pink_flower_normal.png -------------------------------------------------------------------------------- /demo/Environment/orange_flowers/orange_flower_pink_flower_normal.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/Environment/orange_flowers/orange_flower_pink_flower_normal.png.import -------------------------------------------------------------------------------- /demo/Environment/simple_leaves/simple_leaves.tres: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/Environment/simple_leaves/simple_leaves.tres -------------------------------------------------------------------------------- /demo/Environment/simple_leaves/simple_leaves_albedo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/Environment/simple_leaves/simple_leaves_albedo.png -------------------------------------------------------------------------------- /demo/Environment/simple_leaves/simple_leaves_albedo.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/Environment/simple_leaves/simple_leaves_albedo.png.import -------------------------------------------------------------------------------- /demo/Environment/simple_leaves/simple_leaves_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/Environment/simple_leaves/simple_leaves_normal.png -------------------------------------------------------------------------------- /demo/Environment/simple_leaves/simple_leaves_normal.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/Environment/simple_leaves/simple_leaves_normal.png.import -------------------------------------------------------------------------------- /demo/Environment/simple_leaves/simple_leaves_orm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/Environment/simple_leaves/simple_leaves_orm.png -------------------------------------------------------------------------------- /demo/Environment/simple_leaves/simple_leaves_orm.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/Environment/simple_leaves/simple_leaves_orm.png.import -------------------------------------------------------------------------------- /demo/Environment/sky/blue_sky.tres: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/Environment/sky/blue_sky.tres -------------------------------------------------------------------------------- /demo/Environment/sky/sky.gdshader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/Environment/sky/sky.gdshader -------------------------------------------------------------------------------- /demo/Environment/sky/sky.gdshader.uid: -------------------------------------------------------------------------------- 1 | uid://cbc57ydrjqjfj 2 | -------------------------------------------------------------------------------- /demo/Environment/terrain.glb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/Environment/terrain.glb -------------------------------------------------------------------------------- /demo/Environment/terrain.glb.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/Environment/terrain.glb.import -------------------------------------------------------------------------------- /demo/Environment/terrain_bridge_planks_albedo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/Environment/terrain_bridge_planks_albedo.png -------------------------------------------------------------------------------- /demo/Environment/terrain_bridge_planks_albedo.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/Environment/terrain_bridge_planks_albedo.png.import -------------------------------------------------------------------------------- /demo/Environment/terrain_bridge_planks_roughness.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/Environment/terrain_bridge_planks_roughness.png -------------------------------------------------------------------------------- /demo/Environment/terrain_bridge_planks_roughness.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/Environment/terrain_bridge_planks_roughness.png.import -------------------------------------------------------------------------------- /demo/Environment/tree_trunk/tree_trunk_long.glb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/Environment/tree_trunk/tree_trunk_long.glb -------------------------------------------------------------------------------- /demo/Environment/tree_trunk/tree_trunk_long.glb.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/Environment/tree_trunk/tree_trunk_long.glb.import -------------------------------------------------------------------------------- /demo/Environment/tree_trunk/tree_trunk_small.glb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/Environment/tree_trunk/tree_trunk_small.glb -------------------------------------------------------------------------------- /demo/Environment/tree_trunk/tree_trunk_small.glb.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/Environment/tree_trunk/tree_trunk_small.glb.import -------------------------------------------------------------------------------- /demo/Environment/trees/simple_bark/simple_bark.tres: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/Environment/trees/simple_bark/simple_bark.tres -------------------------------------------------------------------------------- /demo/Environment/trees/simple_bark/simple_bark_albedo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/Environment/trees/simple_bark/simple_bark_albedo.png -------------------------------------------------------------------------------- /demo/Environment/trees/simple_bark/simple_bark_albedo.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/Environment/trees/simple_bark/simple_bark_albedo.png.import -------------------------------------------------------------------------------- /demo/Environment/trees/simple_bark/simple_bark_depth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/Environment/trees/simple_bark/simple_bark_depth.png -------------------------------------------------------------------------------- /demo/Environment/trees/simple_bark/simple_bark_depth.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/Environment/trees/simple_bark/simple_bark_depth.png.import -------------------------------------------------------------------------------- /demo/Environment/trees/simple_bark/simple_bark_heightmap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/Environment/trees/simple_bark/simple_bark_heightmap.png -------------------------------------------------------------------------------- /demo/Environment/trees/simple_bark/simple_bark_heightmap.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/Environment/trees/simple_bark/simple_bark_heightmap.png.import -------------------------------------------------------------------------------- /demo/Environment/trees/simple_bark/simple_bark_mask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/Environment/trees/simple_bark/simple_bark_mask.png -------------------------------------------------------------------------------- /demo/Environment/trees/simple_bark/simple_bark_mask.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/Environment/trees/simple_bark/simple_bark_mask.png.import -------------------------------------------------------------------------------- /demo/Environment/trees/simple_bark/simple_bark_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/Environment/trees/simple_bark/simple_bark_normal.png -------------------------------------------------------------------------------- /demo/Environment/trees/simple_bark/simple_bark_normal.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/Environment/trees/simple_bark/simple_bark_normal.png.import -------------------------------------------------------------------------------- /demo/Environment/trees/simple_bark/simple_bark_orm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/Environment/trees/simple_bark/simple_bark_orm.png -------------------------------------------------------------------------------- /demo/Environment/trees/simple_bark/simple_bark_orm.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/Environment/trees/simple_bark/simple_bark_orm.png.import -------------------------------------------------------------------------------- /demo/Environment/trees/simple_pine_leaves/simple_pin_leaves.tres: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/Environment/trees/simple_pine_leaves/simple_pin_leaves.tres -------------------------------------------------------------------------------- /demo/Environment/trees/simple_pine_leaves/simple_pin_leaves_albedo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/Environment/trees/simple_pine_leaves/simple_pin_leaves_albedo.png -------------------------------------------------------------------------------- /demo/Environment/trees/simple_pine_leaves/simple_pin_leaves_albedo.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/Environment/trees/simple_pine_leaves/simple_pin_leaves_albedo.png.import -------------------------------------------------------------------------------- /demo/Environment/trees/simple_pine_leaves/simple_pin_leaves_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/Environment/trees/simple_pine_leaves/simple_pin_leaves_normal.png -------------------------------------------------------------------------------- /demo/Environment/trees/simple_pine_leaves/simple_pin_leaves_normal.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/Environment/trees/simple_pine_leaves/simple_pin_leaves_normal.png.import -------------------------------------------------------------------------------- /demo/Environment/trees/simple_pine_leaves/simple_pin_leaves_orm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/Environment/trees/simple_pine_leaves/simple_pin_leaves_orm.png -------------------------------------------------------------------------------- /demo/Environment/trees/simple_pine_leaves/simple_pin_leaves_orm.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/Environment/trees/simple_pine_leaves/simple_pin_leaves_orm.png.import -------------------------------------------------------------------------------- /demo/Environment/trees/tree.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/Environment/trees/tree.obj -------------------------------------------------------------------------------- /demo/Environment/trees/tree.obj.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/Environment/trees/tree.obj.import -------------------------------------------------------------------------------- /demo/Environment/trees/tree.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/Environment/trees/tree.tscn -------------------------------------------------------------------------------- /demo/Environment/water/textures/caustic_texture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/Environment/water/textures/caustic_texture.png -------------------------------------------------------------------------------- /demo/Environment/water/textures/caustic_texture.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/Environment/water/textures/caustic_texture.png.import -------------------------------------------------------------------------------- /demo/Environment/water/water_shader.gdshader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/Environment/water/water_shader.gdshader -------------------------------------------------------------------------------- /demo/Environment/water/water_shader.gdshader.uid: -------------------------------------------------------------------------------- 1 | uid://jv430rcxlfi2 2 | -------------------------------------------------------------------------------- /demo/Environment/waterfall/waterfall.gdshader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/Environment/waterfall/waterfall.gdshader -------------------------------------------------------------------------------- /demo/Environment/waterfall/waterfall.gdshader.uid: -------------------------------------------------------------------------------- 1 | uid://cg4cq7om1lhxp 2 | -------------------------------------------------------------------------------- /demo/FullScreenHandler.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/FullScreenHandler.kt -------------------------------------------------------------------------------- /demo/JumpingPad/JumpingPad.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/JumpingPad/JumpingPad.kt -------------------------------------------------------------------------------- /demo/JumpingPad/JumpingPad.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/JumpingPad/JumpingPad.tscn -------------------------------------------------------------------------------- /demo/JumpingPad/JumpingPadVisuals/JumpingPadModel.glb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/JumpingPad/JumpingPadVisuals/JumpingPadModel.glb -------------------------------------------------------------------------------- /demo/JumpingPad/JumpingPadVisuals/JumpingPadModel.glb.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/JumpingPad/JumpingPadVisuals/JumpingPadModel.glb.import -------------------------------------------------------------------------------- /demo/JumpingPad/JumpingPadVisuals/JumpingPadModel.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/JumpingPad/JumpingPadVisuals/JumpingPadModel.tscn -------------------------------------------------------------------------------- /demo/JumpingPad/JumpingPadVisuals/JumpingPadModel_screen.gdshader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/JumpingPad/JumpingPadVisuals/JumpingPadModel_screen.gdshader -------------------------------------------------------------------------------- /demo/JumpingPad/JumpingPadVisuals/JumpingPadModel_screen.gdshader.uid: -------------------------------------------------------------------------------- 1 | uid://or07m323vt1y 2 | -------------------------------------------------------------------------------- /demo/JumpingPad/JumpingPadVisuals/JumpingPadModel_screen_mat.tres: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/JumpingPad/JumpingPadVisuals/JumpingPadModel_screen_mat.tres -------------------------------------------------------------------------------- /demo/JumpingPad/JumpingPadVisuals/cross_sprite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/JumpingPad/JumpingPadVisuals/cross_sprite.png -------------------------------------------------------------------------------- /demo/JumpingPad/JumpingPadVisuals/cross_sprite.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/JumpingPad/JumpingPadVisuals/cross_sprite.png.import -------------------------------------------------------------------------------- /demo/Level/DeathPlane.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/Level/DeathPlane.kt -------------------------------------------------------------------------------- /demo/Level/Main_navmesh.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/Level/Main_navmesh.res -------------------------------------------------------------------------------- /demo/Level/Music/mountain.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/Level/Music/mountain.mp3 -------------------------------------------------------------------------------- /demo/Level/Music/mountain.mp3.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/Level/Music/mountain.mp3.import -------------------------------------------------------------------------------- /demo/Level/Terrain.glb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/Level/Terrain.glb -------------------------------------------------------------------------------- /demo/Level/Terrain.glb.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/Level/Terrain.glb.import -------------------------------------------------------------------------------- /demo/Level/gridbox_texture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/Level/gridbox_texture.png -------------------------------------------------------------------------------- /demo/Level/gridbox_texture.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/Level/gridbox_texture.png.import -------------------------------------------------------------------------------- /demo/Main.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/Main.tscn -------------------------------------------------------------------------------- /demo/Player/Bullet.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/Player/Bullet.kt -------------------------------------------------------------------------------- /demo/Player/Bullet.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/Player/Bullet.tscn -------------------------------------------------------------------------------- /demo/Player/BulletVisuals/BulletModel.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/Player/BulletVisuals/BulletModel.obj -------------------------------------------------------------------------------- /demo/Player/BulletVisuals/BulletModel.obj.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/Player/BulletVisuals/BulletModel.obj.import -------------------------------------------------------------------------------- /demo/Player/BulletVisuals/BulletModel.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/Player/BulletVisuals/BulletModel.tscn -------------------------------------------------------------------------------- /demo/Player/BulletVisuals/bullet_spark_shader.gdshader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/Player/BulletVisuals/bullet_spark_shader.gdshader -------------------------------------------------------------------------------- /demo/Player/BulletVisuals/bullet_spark_shader.gdshader.uid: -------------------------------------------------------------------------------- 1 | uid://b14so3qw6clu2 2 | -------------------------------------------------------------------------------- /demo/Player/BulletVisuals/bullet_trail_mat.tres: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/Player/BulletVisuals/bullet_trail_mat.tres -------------------------------------------------------------------------------- /demo/Player/BulletVisuals/bullet_trail_shader.gdshader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/Player/BulletVisuals/bullet_trail_shader.gdshader -------------------------------------------------------------------------------- /demo/Player/BulletVisuals/bullet_trail_shader.gdshader.uid: -------------------------------------------------------------------------------- 1 | uid://djtewmxr5cpjr 2 | -------------------------------------------------------------------------------- /demo/Player/BulletVisuals/sparks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/Player/BulletVisuals/sparks.png -------------------------------------------------------------------------------- /demo/Player/BulletVisuals/sparks.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/Player/BulletVisuals/sparks.png.import -------------------------------------------------------------------------------- /demo/Player/CameraController.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/Player/CameraController.kt -------------------------------------------------------------------------------- /demo/Player/CharacterSkin.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/Player/CharacterSkin.kt -------------------------------------------------------------------------------- /demo/Player/CharacterSkin.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/Player/CharacterSkin.tscn -------------------------------------------------------------------------------- /demo/Player/Coin/Audio/completetask_0.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/Player/Coin/Audio/completetask_0.mp3 -------------------------------------------------------------------------------- /demo/Player/Coin/Audio/completetask_0.mp3.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/Player/Coin/Audio/completetask_0.mp3.import -------------------------------------------------------------------------------- /demo/Player/Coin/Coin.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/Player/Coin/Coin.kt -------------------------------------------------------------------------------- /demo/Player/Coin/Coin.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/Player/Coin/Coin.tscn -------------------------------------------------------------------------------- /demo/Player/Coin/CoinVisuals/CoinModel.glb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/Player/Coin/CoinVisuals/CoinModel.glb -------------------------------------------------------------------------------- /demo/Player/Coin/CoinVisuals/CoinModel.glb.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/Player/Coin/CoinVisuals/CoinModel.glb.import -------------------------------------------------------------------------------- /demo/Player/Coin/CoinVisuals/CoinModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/Player/Coin/CoinVisuals/CoinModel.kt -------------------------------------------------------------------------------- /demo/Player/Coin/CoinVisuals/CoinModel.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/Player/Coin/CoinVisuals/CoinModel.tscn -------------------------------------------------------------------------------- /demo/Player/CoinsContainer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/Player/CoinsContainer.kt -------------------------------------------------------------------------------- /demo/Player/ExplosionVisuals/explosion_scene.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/Player/ExplosionVisuals/explosion_scene.tscn -------------------------------------------------------------------------------- /demo/Player/ExplosionVisuals/materials/blast_mat.tres: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/Player/ExplosionVisuals/materials/blast_mat.tres -------------------------------------------------------------------------------- /demo/Player/ExplosionVisuals/materials/particles_mat.tres: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/Player/ExplosionVisuals/materials/particles_mat.tres -------------------------------------------------------------------------------- /demo/Player/ExplosionVisuals/materials/shell_mat.tres: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/Player/ExplosionVisuals/materials/shell_mat.tres -------------------------------------------------------------------------------- /demo/Player/ExplosionVisuals/objects/disk.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/Player/ExplosionVisuals/objects/disk.obj -------------------------------------------------------------------------------- /demo/Player/ExplosionVisuals/objects/disk.obj.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/Player/ExplosionVisuals/objects/disk.obj.import -------------------------------------------------------------------------------- /demo/Player/ExplosionVisuals/objects/explosion_smoke.glb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/Player/ExplosionVisuals/objects/explosion_smoke.glb -------------------------------------------------------------------------------- /demo/Player/ExplosionVisuals/objects/explosion_smoke.glb.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/Player/ExplosionVisuals/objects/explosion_smoke.glb.import -------------------------------------------------------------------------------- /demo/Player/ExplosionVisuals/shaders/blast_shader.gdshader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/Player/ExplosionVisuals/shaders/blast_shader.gdshader -------------------------------------------------------------------------------- /demo/Player/ExplosionVisuals/shaders/blast_shader.gdshader.uid: -------------------------------------------------------------------------------- 1 | uid://bj16vlth2hjun 2 | -------------------------------------------------------------------------------- /demo/Player/ExplosionVisuals/shaders/explosion_trails_shader.gdshader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/Player/ExplosionVisuals/shaders/explosion_trails_shader.gdshader -------------------------------------------------------------------------------- /demo/Player/ExplosionVisuals/shaders/explosion_trails_shader.gdshader.uid: -------------------------------------------------------------------------------- 1 | uid://ddtpbldsa0rhb 2 | -------------------------------------------------------------------------------- /demo/Player/ExplosionVisuals/shaders/shell_shader.gdshader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/Player/ExplosionVisuals/shaders/shell_shader.gdshader -------------------------------------------------------------------------------- /demo/Player/ExplosionVisuals/shaders/shell_shader.gdshader.uid: -------------------------------------------------------------------------------- 1 | uid://cmdbdufqjnfdm 2 | -------------------------------------------------------------------------------- /demo/Player/ExplosionVisuals/shaders/smoke_shader.gdshader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/Player/ExplosionVisuals/shaders/smoke_shader.gdshader -------------------------------------------------------------------------------- /demo/Player/ExplosionVisuals/shaders/smoke_shader.gdshader.uid: -------------------------------------------------------------------------------- 1 | uid://d8sn3c7fdytt 2 | -------------------------------------------------------------------------------- /demo/Player/Grenade.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/Player/Grenade.kt -------------------------------------------------------------------------------- /demo/Player/Grenade.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/Player/Grenade.tscn -------------------------------------------------------------------------------- /demo/Player/GrenadeLauncher.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/Player/GrenadeLauncher.kt -------------------------------------------------------------------------------- /demo/Player/GrenadeLauncher.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/Player/GrenadeLauncher.tscn -------------------------------------------------------------------------------- /demo/Player/GrenadeVisuals/aim_material.tres: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/Player/GrenadeVisuals/aim_material.tres -------------------------------------------------------------------------------- /demo/Player/GrenadeVisuals/grenade/GrenadeVisuals.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/Player/GrenadeVisuals/grenade/GrenadeVisuals.kt -------------------------------------------------------------------------------- /demo/Player/GrenadeVisuals/grenade/grenade.glb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/Player/GrenadeVisuals/grenade/grenade.glb -------------------------------------------------------------------------------- /demo/Player/GrenadeVisuals/grenade/grenade.glb.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/Player/GrenadeVisuals/grenade/grenade.glb.import -------------------------------------------------------------------------------- /demo/Player/GrenadeVisuals/grenade/grenade.material: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/Player/GrenadeVisuals/grenade/grenade.material -------------------------------------------------------------------------------- /demo/Player/GrenadeVisuals/grenade/grenade.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/Player/GrenadeVisuals/grenade/grenade.tscn -------------------------------------------------------------------------------- /demo/Player/GrenadeVisuals/shaders/grenade_target_shader.gdshader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/Player/GrenadeVisuals/shaders/grenade_target_shader.gdshader -------------------------------------------------------------------------------- /demo/Player/GrenadeVisuals/shaders/grenade_target_shader.gdshader.uid: -------------------------------------------------------------------------------- 1 | uid://dw5semq2tbgq6 2 | -------------------------------------------------------------------------------- /demo/Player/GrenadeVisuals/shaders/grenade_trajectory_shader.gdshader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/Player/GrenadeVisuals/shaders/grenade_trajectory_shader.gdshader -------------------------------------------------------------------------------- /demo/Player/GrenadeVisuals/shaders/grenade_trajectory_shader.gdshader.uid: -------------------------------------------------------------------------------- 1 | uid://mkdwgghwkph1 2 | -------------------------------------------------------------------------------- /demo/Player/GrenadeVisuals/textures/direction_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/Player/GrenadeVisuals/textures/direction_arrow.png -------------------------------------------------------------------------------- /demo/Player/GrenadeVisuals/textures/direction_arrow.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/Player/GrenadeVisuals/textures/direction_arrow.png.import -------------------------------------------------------------------------------- /demo/Player/GrenadeVisuals/textures/target_frame_mask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/Player/GrenadeVisuals/textures/target_frame_mask.png -------------------------------------------------------------------------------- /demo/Player/GrenadeVisuals/textures/target_frame_mask.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/Player/GrenadeVisuals/textures/target_frame_mask.png.import -------------------------------------------------------------------------------- /demo/Player/GrenadeVisuals/textures/target_mask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/Player/GrenadeVisuals/textures/target_mask.png -------------------------------------------------------------------------------- /demo/Player/GrenadeVisuals/textures/target_mask.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/Player/GrenadeVisuals/textures/target_mask.png.import -------------------------------------------------------------------------------- /demo/Player/GrenadeVisuals/trajectory_material.tres: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/Player/GrenadeVisuals/trajectory_material.tres -------------------------------------------------------------------------------- /demo/Player/GrenadeVisuals/trajectory_mockup.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/Player/GrenadeVisuals/trajectory_mockup.obj -------------------------------------------------------------------------------- /demo/Player/GrenadeVisuals/trajectory_mockup.obj.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/Player/GrenadeVisuals/trajectory_mockup.obj.import -------------------------------------------------------------------------------- /demo/Player/GrenadeVisuals/trajectory_mockup.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/Player/GrenadeVisuals/trajectory_mockup.tscn -------------------------------------------------------------------------------- /demo/Player/MeleeAttackArea.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/Player/MeleeAttackArea.kt -------------------------------------------------------------------------------- /demo/Player/Player.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/Player/Player.kt -------------------------------------------------------------------------------- /demo/Player/Player.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/Player/Player.tscn -------------------------------------------------------------------------------- /demo/Player/Sounds/03_Step_grass_03.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/Player/Sounds/03_Step_grass_03.wav -------------------------------------------------------------------------------- /demo/Player/Sounds/03_Step_grass_03.wav.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/Player/Sounds/03_Step_grass_03.wav.import -------------------------------------------------------------------------------- /demo/Player/Sounds/45_Landing_01.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/Player/Sounds/45_Landing_01.wav -------------------------------------------------------------------------------- /demo/Player/Sounds/45_Landing_01.wav.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/Player/Sounds/45_Landing_01.wav.import -------------------------------------------------------------------------------- /demo/Player/Sounds/lasershot-102078.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/Player/Sounds/lasershot-102078.wav -------------------------------------------------------------------------------- /demo/Player/Sounds/lasershot-102078.wav.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/Player/Sounds/lasershot-102078.wav.import -------------------------------------------------------------------------------- /demo/Player/Sounds/musket-explosion-6383.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/Player/Sounds/musket-explosion-6383.wav -------------------------------------------------------------------------------- /demo/Player/Sounds/musket-explosion-6383.wav.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/Player/Sounds/musket-explosion-6383.wav.import -------------------------------------------------------------------------------- /demo/Player/face_mat.gdshader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/Player/face_mat.gdshader -------------------------------------------------------------------------------- /demo/Player/face_mat.gdshader.uid: -------------------------------------------------------------------------------- 1 | uid://rathff2wwex5 2 | -------------------------------------------------------------------------------- /demo/Player/model/character_blend_tree.tres: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/Player/model/character_blend_tree.tres -------------------------------------------------------------------------------- /demo/Player/model/custom_animations/default_heartbeat.tres: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/Player/model/custom_animations/default_heartbeat.tres -------------------------------------------------------------------------------- /demo/Player/model/custom_animations/simple_blink.tres: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/Player/model/custom_animations/simple_blink.tres -------------------------------------------------------------------------------- /demo/Player/model/default_state_machine.tres: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/Player/model/default_state_machine.tres -------------------------------------------------------------------------------- /demo/Player/model/faces/closed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/Player/model/faces/closed.png -------------------------------------------------------------------------------- /demo/Player/model/faces/closed.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/Player/model/faces/closed.png.import -------------------------------------------------------------------------------- /demo/Player/model/faces/open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/Player/model/faces/open.png -------------------------------------------------------------------------------- /demo/Player/model/faces/open.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/Player/model/faces/open.png.import -------------------------------------------------------------------------------- /demo/Player/model/gdbot.glb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/Player/model/gdbot.glb -------------------------------------------------------------------------------- /demo/Player/model/gdbot.glb.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/Player/model/gdbot.glb.import -------------------------------------------------------------------------------- /demo/Player/model/materials/face_mat.tres: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/Player/model/materials/face_mat.tres -------------------------------------------------------------------------------- /demo/Player/model/materials/glass_mat.tres: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/Player/model/materials/glass_mat.tres -------------------------------------------------------------------------------- /demo/Player/model/materials/heart_core_mat.tres: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/Player/model/materials/heart_core_mat.tres -------------------------------------------------------------------------------- /demo/Playground.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/Playground.tscn -------------------------------------------------------------------------------- /demo/icons/Icone.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/icons/Icone.kt -------------------------------------------------------------------------------- /demo/icons/WeaponUI.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/icons/WeaponUI.kt -------------------------------------------------------------------------------- /demo/icons/bomb_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/icons/bomb_icon.png -------------------------------------------------------------------------------- /demo/icons/bomb_icon.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/icons/bomb_icon.png.import -------------------------------------------------------------------------------- /demo/icons/flash_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/icons/flash_icon.png -------------------------------------------------------------------------------- /demo/icons/flash_icon.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/icons/flash_icon.png.import -------------------------------------------------------------------------------- /demo/icons/icone.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/icons/icone.tscn -------------------------------------------------------------------------------- /demo/icons/weapon_ui.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/icons/weapon_ui.tscn -------------------------------------------------------------------------------- /demo/shared/Damageable.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/shared/Damageable.kt -------------------------------------------------------------------------------- /demo/shared/eye_mask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/shared/eye_mask.png -------------------------------------------------------------------------------- /demo/shared/eye_mask.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/shared/eye_mask.png.import -------------------------------------------------------------------------------- /demo/shared/shaders/face_mat.gdshader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/shared/shaders/face_mat.gdshader -------------------------------------------------------------------------------- /demo/shared/shaders/face_mat.gdshader.uid: -------------------------------------------------------------------------------- 1 | uid://cannek0t6gdeb 2 | -------------------------------------------------------------------------------- /demo/shared/shaders/screen_shader.gdshader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/shared/shaders/screen_shader.gdshader -------------------------------------------------------------------------------- /demo/shared/shaders/screen_shader.gdshader.uid: -------------------------------------------------------------------------------- 1 | uid://2w617v3bbo 2 | -------------------------------------------------------------------------------- /demo/shared/shaders/wireframe.gdshader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/shared/shaders/wireframe.gdshader -------------------------------------------------------------------------------- /demo/shared/shaders/wireframe.gdshader.uid: -------------------------------------------------------------------------------- 1 | uid://bkqa064xrbf4q 2 | -------------------------------------------------------------------------------- /demo/shared/textures/eye_mask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/shared/textures/eye_mask.png -------------------------------------------------------------------------------- /demo/shared/textures/eye_mask.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/demo/shared/textures/eye_mask.png.import -------------------------------------------------------------------------------- /godot_kotlin_configuration.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/godot_kotlin_configuration.json -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/.gdignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/gradlew.bat -------------------------------------------------------------------------------- /icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/icon.png -------------------------------------------------------------------------------- /icon.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/icon.png.import -------------------------------------------------------------------------------- /icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/icon.svg -------------------------------------------------------------------------------- /icon.svg.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/icon.svg.import -------------------------------------------------------------------------------- /project.godot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/project.godot -------------------------------------------------------------------------------- /scripts/Box/Box.gdj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/scripts/Box/Box.gdj -------------------------------------------------------------------------------- /scripts/Box/DestroyedBox.gdj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/scripts/Box/DestroyedBox.gdj -------------------------------------------------------------------------------- /scripts/CameraMode/CameraMode.gdj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/scripts/CameraMode/CameraMode.gdj -------------------------------------------------------------------------------- /scripts/DemoPage/DemoPage.gdj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/scripts/DemoPage/DemoPage.gdj -------------------------------------------------------------------------------- /scripts/DemoPage/LinkButton.gdj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/scripts/DemoPage/LinkButton.gdj -------------------------------------------------------------------------------- /scripts/Enemies/BeeBot/BeeRoot.gdj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/scripts/Enemies/BeeBot/BeeRoot.gdj -------------------------------------------------------------------------------- /scripts/Enemies/Beebot.gdj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/scripts/Enemies/Beebot.gdj -------------------------------------------------------------------------------- /scripts/Enemies/Beetle.gdj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/scripts/Enemies/Beetle.gdj -------------------------------------------------------------------------------- /scripts/Enemies/beetleBot/BeetleBotSkin.gdj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/scripts/Enemies/beetleBot/BeetleBotSkin.gdj -------------------------------------------------------------------------------- /scripts/Enemies/smoke_puff/SmokePuff.gdj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/scripts/Enemies/smoke_puff/SmokePuff.gdj -------------------------------------------------------------------------------- /scripts/Environment/GrassScatter.gdj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/scripts/Environment/GrassScatter.gdj -------------------------------------------------------------------------------- /scripts/FullScreenHandler.gdj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/scripts/FullScreenHandler.gdj -------------------------------------------------------------------------------- /scripts/JumpingPad/JumpingPad.gdj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/scripts/JumpingPad/JumpingPad.gdj -------------------------------------------------------------------------------- /scripts/Level/DeathPlane.gdj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/scripts/Level/DeathPlane.gdj -------------------------------------------------------------------------------- /scripts/Player/Bullet.gdj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/scripts/Player/Bullet.gdj -------------------------------------------------------------------------------- /scripts/Player/CameraController.gdj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/scripts/Player/CameraController.gdj -------------------------------------------------------------------------------- /scripts/Player/CharacterSkin.gdj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/scripts/Player/CharacterSkin.gdj -------------------------------------------------------------------------------- /scripts/Player/Coin/Coin.gdj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/scripts/Player/Coin/Coin.gdj -------------------------------------------------------------------------------- /scripts/Player/Coin/CoinVisuals/CoinModel.gdj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/scripts/Player/Coin/CoinVisuals/CoinModel.gdj -------------------------------------------------------------------------------- /scripts/Player/CoinsContainer.gdj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/scripts/Player/CoinsContainer.gdj -------------------------------------------------------------------------------- /scripts/Player/Grenade.gdj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/scripts/Player/Grenade.gdj -------------------------------------------------------------------------------- /scripts/Player/GrenadeLauncher.gdj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/scripts/Player/GrenadeLauncher.gdj -------------------------------------------------------------------------------- /scripts/Player/GrenadeVisuals/grenade/GrenadeVisuals.gdj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/scripts/Player/GrenadeVisuals/grenade/GrenadeVisuals.gdj -------------------------------------------------------------------------------- /scripts/Player/MeleeAttackArea.gdj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/scripts/Player/MeleeAttackArea.gdj -------------------------------------------------------------------------------- /scripts/Player/Player.gdj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/scripts/Player/Player.gdj -------------------------------------------------------------------------------- /scripts/icons/Icone.gdj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/scripts/icons/Icone.gdj -------------------------------------------------------------------------------- /scripts/icons/WeaponUI.gdj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/scripts/icons/WeaponUI.gdj -------------------------------------------------------------------------------- /settings.gradle.kts: -------------------------------------------------------------------------------- 1 | rootProject.name = "godot-kotlin-3d-demo" -------------------------------------------------------------------------------- /src/main/resources/META-INF/services/godot.registration.Entry: -------------------------------------------------------------------------------- 1 | godot.entry.ubQMhvdkfoikYIIaOUXS.Entry -------------------------------------------------------------------------------- /static/.gdignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /static/cover.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/static/cover.webp -------------------------------------------------------------------------------- /static/third-person-character-aiming-grenade.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/static/third-person-character-aiming-grenade.webp -------------------------------------------------------------------------------- /static/third-person-shooter-demo.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utopia-rise/godot-kotlin-3d-demo/HEAD/static/third-person-shooter-demo.webp --------------------------------------------------------------------------------