blob: 4ce985b0ac211893389e282f9cb09962a80215f6 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
[gd_scene load_steps=7 format=2]
[ext_resource path="res://world/chunk/Chunk.gd" type="Script" id=1]
[ext_resource path="res://world/chunk/helper/ChunkedCSGMesh.gd" type="Script" id=2]
[sub_resource type="SphereShape" id=1]
radius = 50.0
[sub_resource type="SpatialMaterial" id=3]
flags_unshaded = true
params_cull_mode = 2
albedo_color = Color( 0.937255, 0, 1, 1 )
[sub_resource type="PlaneMesh" id=2]
size = Vector2( 100, 100 )
[sub_resource type="PlaneMesh" id=4]
size = Vector2( 98, 98 )
[node name="Chunk" type="Area"]
collision_layer = 32
collision_mask = 0
script = ExtResource( 1 )
[node name="Size" type="CollisionShape" parent="."]
shape = SubResource( 1 )
[node name="Border" type="CSGMesh" parent="."]
material_override = SubResource( 3 )
script = ExtResource( 2 )
_mesh = SubResource( 2 )
[node name="CSGMesh" type="CSGMesh" parent="Border"]
operation = 2
script = ExtResource( 2 )
_mesh = SubResource( 4 )
|