Started planet generation tutorial
This commit is contained in:
31
godot/PlanetGeneration.tscn
Normal file
31
godot/PlanetGeneration.tscn
Normal file
@ -0,0 +1,31 @@
|
||||
[gd_scene load_steps=3 format=3 uid="uid://clkrjexk1mje0"]
|
||||
|
||||
[ext_resource type="Script" path="res://PlanetGeneration.gd" id="1_0ns5c"]
|
||||
[ext_resource type="Script" path="res://PlanetMeshFace.gd" id="2_gjljs"]
|
||||
|
||||
[node name="Planet" type="Node3D"]
|
||||
script = ExtResource("1_0ns5c")
|
||||
|
||||
[node name="Up" type="MeshInstance3D" parent="."]
|
||||
script = ExtResource("2_gjljs")
|
||||
normal = Vector3(0, 1, 0)
|
||||
|
||||
[node name="Down" type="MeshInstance3D" parent="."]
|
||||
script = ExtResource("2_gjljs")
|
||||
normal = Vector3(0, -1, 0)
|
||||
|
||||
[node name="Left" type="MeshInstance3D" parent="."]
|
||||
script = ExtResource("2_gjljs")
|
||||
normal = Vector3(-1, 0, 0)
|
||||
|
||||
[node name="Right" type="MeshInstance3D" parent="."]
|
||||
script = ExtResource("2_gjljs")
|
||||
normal = Vector3(1, 0, 0)
|
||||
|
||||
[node name="Front" type="MeshInstance3D" parent="."]
|
||||
script = ExtResource("2_gjljs")
|
||||
normal = Vector3(0, 0, 1)
|
||||
|
||||
[node name="Back" type="MeshInstance3D" parent="."]
|
||||
script = ExtResource("2_gjljs")
|
||||
normal = Vector3(0, 0, -1)
|
Reference in New Issue
Block a user