diff options
| author | Anson Bridges <bridges.anson@gmail.com> | 2022-09-13 18:15:01 -0400 |
|---|---|---|
| committer | Anson Bridges <bridges.anson@gmail.com> | 2022-09-13 18:15:01 -0400 |
| commit | 4068e66756966983973ab20b68ec5382e398548b (patch) | |
| tree | c2215e65167c7f6aced272da371214985cce16f5 /godot/scenes/worldprops/Runway.tscn | |
| parent | e2f3e4bd7118c8f55d20b29d76cb9a13acf72f8b (diff) | |
incomplete airplane implementation (needs addl. network sync)
Diffstat (limited to 'godot/scenes/worldprops/Runway.tscn')
| -rw-r--r-- | godot/scenes/worldprops/Runway.tscn | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/godot/scenes/worldprops/Runway.tscn b/godot/scenes/worldprops/Runway.tscn new file mode 100644 index 0000000..e827cd2 --- /dev/null +++ b/godot/scenes/worldprops/Runway.tscn @@ -0,0 +1,23 @@ +[gd_scene load_steps=5 format=2] + +[ext_resource path="res://textures/conc_slabs01_c.png" type="Texture" id=1] + +[sub_resource type="SpatialMaterial" id=1] +albedo_texture = ExtResource( 1 ) +uv1_scale = Vector3( 0.1, 0.1, 0.1 ) +uv1_triplanar = true + +[sub_resource type="CubeMesh" id=2] +material = SubResource( 1 ) +size = Vector3( 100, 5, 10 ) + +[sub_resource type="ConvexPolygonShape" id=3] +points = PoolVector3Array( -50, -2.5, -5, -50, 2.5, -5, 50, -2.5, -5, -50, -2.5, 5, -50, 2.5, 5, 50, 2.5, -5, 50, -2.5, 5, 50, 2.5, 5 ) + +[node name="Runway" type="StaticBody"] + +[node name="MeshInstance" type="MeshInstance" parent="."] +mesh = SubResource( 2 ) + +[node name="CollisionShape" type="CollisionShape" parent="."] +shape = SubResource( 3 ) |
