2023-06-22 18:34:39 +02:00
|
|
|
[gd_scene load_steps=10 format=2]
|
2023-05-03 13:26:13 +02:00
|
|
|
|
|
|
|
[ext_resource path="res://scenes/TileWorld.cs" type="Script" id=1]
|
|
|
|
[ext_resource path="res://icon.png" type="Texture" id=2]
|
2023-12-29 09:26:43 +01:00
|
|
|
[ext_resource path="res://materials/WorldTileTypeMaterial.tres" type="Material" id=3]
|
2023-05-21 17:24:37 +02:00
|
|
|
[ext_resource path="res://materials/IslandHeightmapFalloffShader.tres" type="Material" id=4]
|
2023-07-14 17:56:01 +02:00
|
|
|
[ext_resource path="res://entities/rockB.tscn" type="PackedScene" id=5]
|
|
|
|
[ext_resource path="res://entities/rockC.tscn" type="PackedScene" id=6]
|
|
|
|
[ext_resource path="res://entities/rockA.tscn" type="PackedScene" id=7]
|
2023-06-11 22:04:22 +02:00
|
|
|
[ext_resource path="res://assets/Environment/grassLarge.tscn" type="PackedScene" id=8]
|
2023-06-23 15:39:07 +02:00
|
|
|
[ext_resource path="res://entities/Tree.tscn" type="PackedScene" id=9]
|
2023-05-03 13:26:13 +02:00
|
|
|
|
|
|
|
[node name="TileWorld" type="Spatial"]
|
|
|
|
script = ExtResource( 1 )
|
|
|
|
|
2023-05-21 17:24:37 +02:00
|
|
|
[node name="WorldOffscreenViewport" type="Viewport" parent="."]
|
2023-05-03 13:26:13 +02:00
|
|
|
size = Vector2( 100, 100 )
|
|
|
|
own_world = true
|
|
|
|
handle_input_locally = false
|
|
|
|
hdr = false
|
2023-05-05 16:26:33 +02:00
|
|
|
disable_3d = true
|
2023-05-03 13:26:13 +02:00
|
|
|
usage = 0
|
|
|
|
render_target_v_flip = true
|
2023-07-28 22:23:41 +02:00
|
|
|
render_target_update_mode = 0
|
|
|
|
shadow_atlas_quad_0 = 0
|
|
|
|
shadow_atlas_quad_1 = 0
|
|
|
|
shadow_atlas_quad_2 = 0
|
|
|
|
shadow_atlas_quad_3 = 0
|
2023-05-03 13:26:13 +02:00
|
|
|
|
2023-05-21 17:24:37 +02:00
|
|
|
[node name="TextureRect" type="TextureRect" parent="WorldOffscreenViewport"]
|
2023-05-03 13:26:13 +02:00
|
|
|
material = ExtResource( 3 )
|
|
|
|
texture = ExtResource( 2 )
|
2023-05-05 16:26:33 +02:00
|
|
|
|
2023-05-21 17:24:37 +02:00
|
|
|
[node name="Camera2D" type="Camera2D" parent="WorldOffscreenViewport"]
|
|
|
|
|
|
|
|
[node name="HeightmapOffscreenViewport" type="Viewport" parent="."]
|
|
|
|
size = Vector2( 100, 100 )
|
|
|
|
own_world = true
|
|
|
|
handle_input_locally = false
|
|
|
|
hdr = false
|
|
|
|
disable_3d = true
|
|
|
|
usage = 0
|
|
|
|
render_target_v_flip = true
|
2023-07-28 22:23:41 +02:00
|
|
|
render_target_update_mode = 0
|
|
|
|
shadow_atlas_quad_0 = 0
|
|
|
|
shadow_atlas_quad_1 = 0
|
|
|
|
shadow_atlas_quad_2 = 0
|
|
|
|
shadow_atlas_quad_3 = 0
|
2023-05-21 17:24:37 +02:00
|
|
|
|
|
|
|
[node name="TextureRect" type="TextureRect" parent="HeightmapOffscreenViewport"]
|
|
|
|
material = ExtResource( 4 )
|
|
|
|
texture = ExtResource( 2 )
|
|
|
|
|
|
|
|
[node name="Camera2D" type="Camera2D" parent="HeightmapOffscreenViewport"]
|
2023-06-11 22:04:22 +02:00
|
|
|
|
|
|
|
[node name="Assets" type="Spatial" parent="."]
|
2023-07-09 22:17:55 +02:00
|
|
|
transform = Transform( 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, -5, 0 )
|
2023-06-11 22:04:22 +02:00
|
|
|
visible = false
|
|
|
|
|
|
|
|
[node name="Rocks" type="Spatial" parent="Assets"]
|
|
|
|
|
|
|
|
[node name="rockA" parent="Assets/Rocks" instance=ExtResource( 7 )]
|
|
|
|
|
|
|
|
[node name="rockB" parent="Assets/Rocks" instance=ExtResource( 5 )]
|
|
|
|
|
|
|
|
[node name="rockC" parent="Assets/Rocks" instance=ExtResource( 6 )]
|
|
|
|
|
|
|
|
[node name="Grass" type="Spatial" parent="Assets"]
|
|
|
|
|
|
|
|
[node name="grassLarge" parent="Assets/Grass" instance=ExtResource( 8 )]
|
|
|
|
|
2023-06-22 18:34:39 +02:00
|
|
|
[node name="Trees" type="Spatial" parent="Assets"]
|
|
|
|
|
|
|
|
[node name="tree" parent="Assets/Trees" instance=ExtResource( 9 )]
|
|
|
|
|
2023-06-11 22:04:22 +02:00
|
|
|
[node name="Environment" type="Spatial" parent="."]
|
2023-06-23 15:39:07 +02:00
|
|
|
|
|
|
|
[node name="Entities" type="Spatial" parent="."]
|