update
This commit is contained in:
36
scenes/portal/gate.tscn
Normal file
36
scenes/portal/gate.tscn
Normal file
@@ -0,0 +1,36 @@
|
||||
[gd_scene format=3]
|
||||
|
||||
[ext_resource type="Script" path="res://scripts/portal/gate.gd" id="1"]
|
||||
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_1"]
|
||||
albedo_color = Color(0.1, 0.9, 0.3, 1)
|
||||
emission_enabled = true
|
||||
emission = Color(0.1, 0.9, 0.3, 1)
|
||||
emission_energy_multiplier = 0.5
|
||||
|
||||
[sub_resource type="CylinderMesh" id="CylinderMesh_1"]
|
||||
top_radius = 1.0
|
||||
bottom_radius = 1.0
|
||||
height = 2.0
|
||||
material = SubResource("StandardMaterial3D_1")
|
||||
|
||||
[sub_resource type="SphereShape3D" id="SphereShape3D_1"]
|
||||
radius = 3.0
|
||||
|
||||
[node name="Gate" type="StaticBody3D"]
|
||||
script = ExtResource("1")
|
||||
collision_layer = 0
|
||||
collision_mask = 0
|
||||
|
||||
[node name="Mesh" type="MeshInstance3D" parent="."]
|
||||
mesh = SubResource("CylinderMesh_1")
|
||||
|
||||
[node name="GateArea" type="Area3D" parent="."]
|
||||
collision_layer = 0
|
||||
collision_mask = 1
|
||||
monitoring = true
|
||||
|
||||
[node name="CollisionShape3D" type="CollisionShape3D" parent="GateArea"]
|
||||
shape = SubResource("SphereShape3D_1")
|
||||
|
||||
[connection signal="body_entered" from="GateArea" to="." method="_on_gate_area_body_entered"]
|
||||
Reference in New Issue
Block a user