46 lines
1.2 KiB
Plaintext
46 lines
1.2 KiB
Plaintext
[gd_scene load_steps=6 format=3]
|
|
|
|
[ext_resource type="Script" path="res://world/jajce/CozyButterfly.gd" id="1_script"]
|
|
|
|
[sub_resource type="StandardMaterial3D" id="Material_body"]
|
|
albedo_color = Color(0.18, 0.1, 0.06, 1)
|
|
roughness = 0.85
|
|
|
|
[sub_resource type="CapsuleMesh" id="Mesh_body"]
|
|
material = SubResource("Material_body")
|
|
radius = 0.08
|
|
height = 0.42
|
|
radial_segments = 8
|
|
rings = 3
|
|
|
|
[sub_resource type="StandardMaterial3D" id="Material_wing"]
|
|
albedo_color = Color(0.94, 0.53, 0.19, 1)
|
|
roughness = 0.72
|
|
emission_enabled = true
|
|
emission = Color(0.32, 0.08, 0.01, 1)
|
|
emission_energy_multiplier = 0.18
|
|
|
|
[sub_resource type="SphereMesh" id="Mesh_wing"]
|
|
material = SubResource("Material_wing")
|
|
radius = 0.42
|
|
height = 0.7
|
|
radial_segments = 12
|
|
rings = 6
|
|
|
|
[node name="CozyButterfly" type="Node3D"]
|
|
script = ExtResource("1_script")
|
|
|
|
[node name="Body" type="MeshInstance3D" parent="."]
|
|
rotation_degrees = Vector3(90, 0, 0)
|
|
mesh = SubResource("Mesh_body")
|
|
|
|
[node name="LeftWing" type="MeshInstance3D" parent="."]
|
|
position = Vector3(-0.3, 0, 0)
|
|
scale = Vector3(1, 0.12, 0.72)
|
|
mesh = SubResource("Mesh_wing")
|
|
|
|
[node name="RightWing" type="MeshInstance3D" parent="."]
|
|
position = Vector3(0.3, 0, 0)
|
|
scale = Vector3(1, 0.12, 0.72)
|
|
mesh = SubResource("Mesh_wing")
|