mirror of
https://git.erg.school/P039/art_num_2024.git
synced 2026-02-04 13:09:20 +01:00
'guozeINSP'
This commit is contained in:
11
NinonQUERAL/guoze/scenes/AnimationPlayer.gd
Normal file
11
NinonQUERAL/guoze/scenes/AnimationPlayer.gd
Normal file
@@ -0,0 +1,11 @@
|
||||
extends AnimationPlayer
|
||||
|
||||
|
||||
# Called when the node enters the scene tree for the first time.
|
||||
func _ready():
|
||||
play("start")
|
||||
|
||||
|
||||
# Called every frame. 'delta' is the elapsed time since the previous frame.
|
||||
func _process(delta):
|
||||
pass
|
||||
18
NinonQUERAL/guoze/scenes/actionable.gd
Normal file
18
NinonQUERAL/guoze/scenes/actionable.gd
Normal file
@@ -0,0 +1,18 @@
|
||||
extends Area3D
|
||||
|
||||
const Balloon = preload("res://dialogues/balloon.tscn")
|
||||
|
||||
@export var dialogue_resource: DialogueResource
|
||||
@export var dialogue_start: String = "start"
|
||||
var dialogread = 0
|
||||
|
||||
|
||||
func action() -> void:
|
||||
if dialogread == 0:
|
||||
var balloon : Node = Balloon.instantiate()
|
||||
get_tree().current_scene.add_child(balloon)
|
||||
balloon.start(dialogue_resource, dialogue_start)
|
||||
|
||||
|
||||
|
||||
|
||||
1
NinonQUERAL/guoze/scenes/actionable.gd.uid
Normal file
1
NinonQUERAL/guoze/scenes/actionable.gd.uid
Normal file
@@ -0,0 +1 @@
|
||||
uid://ws1tj8vcs6r2
|
||||
7
NinonQUERAL/guoze/scenes/actionable.tscn
Normal file
7
NinonQUERAL/guoze/scenes/actionable.tscn
Normal file
@@ -0,0 +1,7 @@
|
||||
[gd_scene load_steps=2 format=3 uid="uid://ccgbjjf5bw3r8"]
|
||||
|
||||
[ext_resource type="Script" path="res://scenes/actionable.gd" id="1_1nbln"]
|
||||
|
||||
[node name="Actionable" type="Area3D"]
|
||||
collision_layer = 16
|
||||
script = ExtResource("1_1nbln")
|
||||
62
NinonQUERAL/guoze/scenes/export_presets.cfg
Normal file
62
NinonQUERAL/guoze/scenes/export_presets.cfg
Normal file
@@ -0,0 +1,62 @@
|
||||
[preset.0]
|
||||
|
||||
name="Windows Desktop"
|
||||
platform="Windows Desktop"
|
||||
runnable=true
|
||||
dedicated_server=false
|
||||
custom_features=""
|
||||
export_filter="all_resources"
|
||||
include_filter=""
|
||||
exclude_filter=""
|
||||
export_path="../../desktop/Lejeu/guozé.exe"
|
||||
encryption_include_filters=""
|
||||
encryption_exclude_filters=""
|
||||
encrypt_pck=false
|
||||
encrypt_directory=false
|
||||
|
||||
[preset.0.options]
|
||||
|
||||
custom_template/debug=""
|
||||
custom_template/release=""
|
||||
debug/export_console_wrapper=1
|
||||
binary_format/embed_pck=false
|
||||
texture_format/bptc=true
|
||||
texture_format/s3tc=true
|
||||
texture_format/etc=false
|
||||
texture_format/etc2=false
|
||||
binary_format/architecture="x86_64"
|
||||
codesign/enable=false
|
||||
codesign/timestamp=true
|
||||
codesign/timestamp_server_url=""
|
||||
codesign/digest_algorithm=1
|
||||
codesign/description=""
|
||||
codesign/custom_options=PackedStringArray()
|
||||
application/modify_resources=true
|
||||
application/icon=""
|
||||
application/console_wrapper_icon=""
|
||||
application/icon_interpolation=4
|
||||
application/file_version=""
|
||||
application/product_version=""
|
||||
application/company_name="Zinzin"
|
||||
application/product_name="Guozé"
|
||||
application/file_description=""
|
||||
application/copyright=""
|
||||
application/trademarks=""
|
||||
application/export_angle=0
|
||||
ssh_remote_deploy/enabled=false
|
||||
ssh_remote_deploy/host="user@host_ip"
|
||||
ssh_remote_deploy/port="22"
|
||||
ssh_remote_deploy/extra_args_ssh=""
|
||||
ssh_remote_deploy/extra_args_scp=""
|
||||
ssh_remote_deploy/run_script="Expand-Archive -LiteralPath '{temp_dir}\\{archive_name}' -DestinationPath '{temp_dir}'
|
||||
$action = New-ScheduledTaskAction -Execute '{temp_dir}\\{exe_name}' -Argument '{cmd_args}'
|
||||
$trigger = New-ScheduledTaskTrigger -Once -At 00:00
|
||||
$settings = New-ScheduledTaskSettingsSet
|
||||
$task = New-ScheduledTask -Action $action -Trigger $trigger -Settings $settings
|
||||
Register-ScheduledTask godot_remote_debug -InputObject $task -Force:$true
|
||||
Start-ScheduledTask -TaskName godot_remote_debug
|
||||
while (Get-ScheduledTask -TaskName godot_remote_debug | ? State -eq running) { Start-Sleep -Milliseconds 100 }
|
||||
Unregister-ScheduledTask -TaskName godot_remote_debug -Confirm:$false -ErrorAction:SilentlyContinue"
|
||||
ssh_remote_deploy/cleanup_script="Stop-ScheduledTask -TaskName godot_remote_debug -ErrorAction:SilentlyContinue
|
||||
Unregister-ScheduledTask -TaskName godot_remote_debug -Confirm:$false -ErrorAction:SilentlyContinue
|
||||
Remove-Item -Recurse -Force '{temp_dir}'"
|
||||
16
NinonQUERAL/guoze/scenes/menu.gd
Normal file
16
NinonQUERAL/guoze/scenes/menu.gd
Normal file
@@ -0,0 +1,16 @@
|
||||
extends Node2D
|
||||
|
||||
|
||||
func _on_start_pressed() -> void:
|
||||
get_tree().change_scene_to_file("res://scenes/nunescrpt.tscn")
|
||||
|
||||
|
||||
func _on_options_pressed() -> void:
|
||||
pass # Replace with function body.
|
||||
|
||||
|
||||
func _on_quit_pressed() -> void:
|
||||
get_tree().quit()
|
||||
|
||||
|
||||
|
||||
76
NinonQUERAL/guoze/scenes/menu.tscn
Normal file
76
NinonQUERAL/guoze/scenes/menu.tscn
Normal file
@@ -0,0 +1,76 @@
|
||||
[gd_scene load_steps=9 format=3 uid="uid://bhd2153awfm7w"]
|
||||
|
||||
[ext_resource type="Script" path="res://scenes/menu.gd" id="1_xvga6"]
|
||||
[ext_resource type="Texture2D" uid="uid://bbsbdtesqbjv7" path="res://ress/Capture d'écran 2025-11-09 145255.png" id="2_q88me"]
|
||||
[ext_resource type="Texture2D" uid="uid://b0glsa670on58" path="res://ress/bbbboyu.png" id="3_dhnr4"]
|
||||
[ext_resource type="Texture2D" uid="uid://couhj5hdfidfd" path="res://ress/quit.png" id="4_ccyff"]
|
||||
[ext_resource type="AudioStream" uid="uid://ccqi3ckjgsqr3" path="res://soundeffects/musik/Guozé Soundtrack.mp3" id="5_vxg5c"]
|
||||
[ext_resource type="Script" path="res://scenes/AnimationPlayer.gd" id="6_ed4f4"]
|
||||
|
||||
[sub_resource type="Animation" id="Animation_woi4l"]
|
||||
resource_name = "start"
|
||||
length = 8.0
|
||||
loop_mode = 1
|
||||
tracks/0/type = "value"
|
||||
tracks/0/imported = false
|
||||
tracks/0/enabled = true
|
||||
tracks/0/path = NodePath(".:position")
|
||||
tracks/0/interp = 1
|
||||
tracks/0/loop_wrap = true
|
||||
tracks/0/keys = {
|
||||
"times": PackedFloat32Array(0, 4, 8),
|
||||
"transitions": PackedFloat32Array(1, 1, 1),
|
||||
"update": 0,
|
||||
"values": [Vector2(252, 140), Vector2(259, 219), Vector2(252, 140)]
|
||||
}
|
||||
|
||||
[sub_resource type="AnimationLibrary" id="AnimationLibrary_un2oo"]
|
||||
_data = {
|
||||
"start": SubResource("Animation_woi4l")
|
||||
}
|
||||
|
||||
[node name="menu" type="Node2D"]
|
||||
script = ExtResource("1_xvga6")
|
||||
|
||||
[node name="CaptureD\'écran2025-11-09145255" type="Sprite2D" parent="."]
|
||||
position = Vector2(633, 381)
|
||||
scale = Vector2(1.1498, 1.24312)
|
||||
texture = ExtResource("2_q88me")
|
||||
|
||||
[node name="buttonManager" type="Control" parent="."]
|
||||
layout_mode = 3
|
||||
anchors_preset = 0
|
||||
offset_right = 40.0
|
||||
offset_bottom = 40.0
|
||||
|
||||
[node name="start" type="TextureButton" parent="buttonManager"]
|
||||
layout_mode = 0
|
||||
offset_left = 252.0
|
||||
offset_top = 140.0
|
||||
offset_right = 1442.0
|
||||
offset_bottom = 667.0
|
||||
scale = Vector2(0.581289, 0.561171)
|
||||
texture_normal = ExtResource("3_dhnr4")
|
||||
|
||||
[node name="quit" type="TextureButton" parent="buttonManager"]
|
||||
layout_mode = 0
|
||||
offset_left = -7.0
|
||||
offset_top = 574.0
|
||||
offset_right = 416.0
|
||||
offset_bottom = 696.0
|
||||
scale = Vector2(0.67766, 0.53162)
|
||||
texture_normal = ExtResource("4_ccyff")
|
||||
|
||||
[node name="AudioStreamPlayer2D" type="AudioStreamPlayer2D" parent="."]
|
||||
stream = ExtResource("5_vxg5c")
|
||||
autoplay = true
|
||||
|
||||
[node name="AnimationPlayer" type="AnimationPlayer" parent="."]
|
||||
root_node = NodePath("../buttonManager/start")
|
||||
libraries = {
|
||||
"": SubResource("AnimationLibrary_un2oo")
|
||||
}
|
||||
script = ExtResource("6_ed4f4")
|
||||
|
||||
[connection signal="pressed" from="buttonManager/start" to="." method="_on_start_pressed"]
|
||||
[connection signal="pressed" from="buttonManager/quit" to="." method="_on_quit_pressed"]
|
||||
215
NinonQUERAL/guoze/scenes/nun9FF7.tmp
Normal file
215
NinonQUERAL/guoze/scenes/nun9FF7.tmp
Normal file
@@ -0,0 +1,215 @@
|
||||
[gd_scene load_steps=30 format=3 uid="uid://bk5tmk443xdob"]
|
||||
|
||||
[ext_resource type="Script" path="res://script/player.gd" id="1_gg5e3"]
|
||||
[ext_resource type="Script" path="res://script/global.gd" id="1_m1nkr"]
|
||||
[ext_resource type="Texture2D" uid="uid://bh7fg7nllevjw" path="res://ress/perso/none.png" id="2_5051a"]
|
||||
[ext_resource type="PackedScene" uid="uid://ccgbjjf5bw3r8" path="res://scenes/actionable.tscn" id="3_mhr1s"]
|
||||
[ext_resource type="Resource" uid="uid://b7m8rks7e6jug" path="res://dialogues/dialogue.dialogue" id="4_ax3iu"]
|
||||
[ext_resource type="Texture2D" uid="uid://dwnemsacftiqp" path="res://ress/perso/ptnbb.png" id="7_u11ll"]
|
||||
[ext_resource type="Resource" uid="uid://52ibfxjo5hys" path="res://dialogues/petibdialogue.dialogue" id="8_t6f8t"]
|
||||
[ext_resource type="Texture2D" uid="uid://q5ye4sc38xot" path="res://environnement/sol.jpg" id="9_8nlks"]
|
||||
[ext_resource type="Texture2D" uid="uid://bcljt5gst83pn" path="res://ress/perso/doux enfant.png" id="9_28kru"]
|
||||
[ext_resource type="Resource" uid="uid://djga8ytwmci4q" path="res://dialogues/chaircréat.dialogue" id="9_vjk1w"]
|
||||
[ext_resource type="Texture2D" uid="uid://b2hu7cg0xx050" path="res://ress/perso/merca.png" id="9_y15t0"]
|
||||
[ext_resource type="ArrayMesh" uid="uid://wkaluoe6akjj" path="res://environnement/nature.obj" id="10_7m7xt"]
|
||||
[ext_resource type="Resource" uid="uid://d3vpn53u411am" path="res://dialogues/mercca.dialogue" id="10_8cprm"]
|
||||
[ext_resource type="ArrayMesh" uid="uid://dx6gtdvu52pgq" path="res://environnement/water.mtl.obj" id="11_2rqw7"]
|
||||
[ext_resource type="Texture2D" uid="uid://ro6aryvrkc4b" path="res://ress/perso/organz.png" id="11_yqlsw"]
|
||||
[ext_resource type="Resource" uid="uid://mej4bk7mc2qu" path="res://dialogues/organdialogue.dialogue" id="12_cys4f"]
|
||||
[ext_resource type="Texture2D" uid="uid://dynea0wbhqrxf" path="res://ress/perso/ane.png" id="12_rmeph"]
|
||||
[ext_resource type="Resource" uid="uid://bbww4r58fai0m" path="res://dialogues/donks.dialogue" id="13_t8o45"]
|
||||
[ext_resource type="Texture2D" uid="uid://dljiuiin7nrlu" path="res://ress/perso/anesse.png" id="14_6sos1"]
|
||||
[ext_resource type="Resource" uid="uid://cn8bh4k43rj0o" path="res://dialogues/annesse.dialogue" id="15_bpwju"]
|
||||
|
||||
[sub_resource type="CapsuleShape3D" id="CapsuleShape3D_6vlm7"]
|
||||
|
||||
[sub_resource type="SphereShape3D" id="SphereShape3D_t7j46"]
|
||||
|
||||
[sub_resource type="GDScript" id="GDScript_vrsur"]
|
||||
|
||||
[sub_resource type="BoxShape3D" id="BoxShape3D_doo1a"]
|
||||
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_bxoq6"]
|
||||
albedo_texture = ExtResource("9_8nlks")
|
||||
uv1_scale = Vector3(50, 50, 50)
|
||||
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_ea0gx"]
|
||||
transparency = 1
|
||||
blend_mode = 1
|
||||
albedo_color = Color(0.494118, 0.847059, 0.737255, 1)
|
||||
roughness = 0.15
|
||||
|
||||
[sub_resource type="ProceduralSkyMaterial" id="ProceduralSkyMaterial_uxd6v"]
|
||||
sky_top_color = Color(0.407843, 0.815686, 0.298039, 1)
|
||||
sky_horizon_color = Color(0.384314, 0.733333, 0.619608, 1)
|
||||
sky_curve = 0.14489
|
||||
sky_cover = ExtResource("9_8nlks")
|
||||
sky_cover_modulate = Color(0.956863, 0.301961, 0.32549, 1)
|
||||
ground_bottom_color = Color(0.235294, 0.478431, 0.333333, 1)
|
||||
ground_horizon_color = Color(0.411765, 0.741176, 0.486275, 1)
|
||||
sun_angle_max = 21.82
|
||||
|
||||
[sub_resource type="Sky" id="Sky_cdwpx"]
|
||||
sky_material = SubResource("ProceduralSkyMaterial_uxd6v")
|
||||
|
||||
[sub_resource type="Environment" id="Environment_pws3r"]
|
||||
background_mode = 2
|
||||
sky = SubResource("Sky_cdwpx")
|
||||
|
||||
[node name="Node3D" type="Node3D"]
|
||||
script = ExtResource("1_m1nkr")
|
||||
|
||||
[node name="CharacterBody3D" type="CharacterBody3D" parent="."]
|
||||
transform = Transform3D(3.54013, 0, 0, 0, 1.58533, 0, 0, 0, 1, 4, 7.70788, 137)
|
||||
script = ExtResource("1_gg5e3")
|
||||
|
||||
[node name="CollisionShape3D" type="CollisionShape3D" parent="CharacterBody3D"]
|
||||
transform = Transform3D(0.435205, 0, 0, 0, 1, 0, 0, 0, 0.882788, 0, 0, 0)
|
||||
shape = SubResource("CapsuleShape3D_6vlm7")
|
||||
|
||||
[node name="head" type="Node3D" parent="CharacterBody3D"]
|
||||
transform = Transform3D(0.282476, 0, 0, 0, 0.630785, 0, 0, 0, 1, 0, -1.70809, 0)
|
||||
|
||||
[node name="Camera3D" type="Camera3D" parent="CharacterBody3D/head"]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 3.70788, 0)
|
||||
|
||||
[node name="Direction" type="Marker3D" parent="CharacterBody3D"]
|
||||
|
||||
[node name="ActionableFinder" type="Area3D" parent="CharacterBody3D/Direction"]
|
||||
collision_layer = 0
|
||||
collision_mask = 16
|
||||
|
||||
[node name="CollisionShape3D" type="CollisionShape3D" parent="CharacterBody3D/Direction/ActionableFinder"]
|
||||
transform = Transform3D(0.56, 0, 0, 0, 1.4, 0, 0, 0, 1.98, 0, 0, -1)
|
||||
shape = SubResource("SphereShape3D_t7j46")
|
||||
|
||||
[node name="NoKillNune" type="StaticBody3D" parent="."]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 4.08478, -44.041)
|
||||
script = SubResource("GDScript_vrsur")
|
||||
|
||||
[node name="Sprite3D" type="Sprite3D" parent="NoKillNune"]
|
||||
billboard = 1
|
||||
texture = ExtResource("2_5051a")
|
||||
|
||||
[node name="Actionable" parent="NoKillNune" instance=ExtResource("3_mhr1s")]
|
||||
dialogue_resource = ExtResource("4_ax3iu")
|
||||
dialogue_start = null
|
||||
|
||||
[node name="CollisionShape3D" type="CollisionShape3D" parent="NoKillNune/Actionable"]
|
||||
transform = Transform3D(6.45607, 0, 0, 0, 6.45607, 0, 0, 0, 6.45607, 0, 0, 0)
|
||||
shape = SubResource("BoxShape3D_doo1a")
|
||||
|
||||
[node name="getibb" type="StaticBody3D" parent="."]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 8.78734, 0)
|
||||
|
||||
[node name="Sprite3D" type="Sprite3D" parent="getibb"]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -92.1616, -5.42882, 99.6166)
|
||||
billboard = 1
|
||||
texture = ExtResource("7_u11ll")
|
||||
|
||||
[node name="Actionable" parent="getibb/Sprite3D" instance=ExtResource("3_mhr1s")]
|
||||
dialogue_resource = ExtResource("8_t6f8t")
|
||||
dialogue_start = null
|
||||
|
||||
[node name="CollisionShape3D" type="CollisionShape3D" parent="getibb/Sprite3D/Actionable"]
|
||||
transform = Transform3D(6.45607, 0, 0, 0, 6.45607, 0, 0, 0, 6.45607, 0, 0, 0)
|
||||
shape = SubResource("BoxShape3D_doo1a")
|
||||
|
||||
[node name="chairecréat" type="StaticBody3D" parent="."]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 24.2112, 0, 0)
|
||||
|
||||
[node name="Sprite3D" type="Sprite3D" parent="chairecréat"]
|
||||
transform = Transform3D(3.7104, 0, 0, 0, 3.7104, 0, 0, 0, 3.7104, -63.6458, 8.57669, 0)
|
||||
billboard = 1
|
||||
texture = ExtResource("9_28kru")
|
||||
|
||||
[node name="Actionable" parent="chairecréat/Sprite3D" instance=ExtResource("3_mhr1s")]
|
||||
dialogue_resource = ExtResource("9_vjk1w")
|
||||
dialogue_start = null
|
||||
|
||||
[node name="CollisionShape3D" type="CollisionShape3D" parent="chairecréat/Sprite3D/Actionable"]
|
||||
transform = Transform3D(6.45607, 0, 0, 0, 6.45607, 0, 0, 0, 6.45607, 0, 0, 0)
|
||||
shape = SubResource("BoxShape3D_doo1a")
|
||||
|
||||
[node name="merca" type="StaticBody3D" parent="."]
|
||||
transform = Transform3D(0.483027, 0, 0, 0, 0.483027, 0, 0, 0, 0.483027, 64.6558, 4.03859, 17.2205)
|
||||
|
||||
[node name="Sprite3D" type="Sprite3D" parent="merca"]
|
||||
billboard = 1
|
||||
texture = ExtResource("9_y15t0")
|
||||
|
||||
[node name="Actionable" parent="merca/Sprite3D" instance=ExtResource("3_mhr1s")]
|
||||
transform = Transform3D(0.922178, 0, 0, 0, 0.922178, 0, 0, 0, 0.922178, 0, 0, 0)
|
||||
dialogue_resource = ExtResource("10_8cprm")
|
||||
dialogue_start = null
|
||||
|
||||
[node name="CollisionShape3D" type="CollisionShape3D" parent="merca/Sprite3D/Actionable"]
|
||||
transform = Transform3D(6.45607, 0, 0, 0, 6.45607, 0, 0, 0, 6.45607, 0, 0, 0)
|
||||
shape = SubResource("BoxShape3D_doo1a")
|
||||
|
||||
[node name="donks" type="StaticBody3D" parent="."]
|
||||
transform = Transform3D(0.483027, 0, 0, 0, 0.483027, 0, 0, 0, 0.483027, 64.6558, 3.61877, -24.6531)
|
||||
|
||||
[node name="Sprite3D" type="Sprite3D" parent="donks"]
|
||||
billboard = 1
|
||||
texture = ExtResource("12_rmeph")
|
||||
|
||||
[node name="Actionable" parent="donks/Sprite3D" instance=ExtResource("3_mhr1s")]
|
||||
transform = Transform3D(0.922178, 0, 0, 0, 0.922178, 0, 0, 0, 0.922178, 0, 0, 0)
|
||||
dialogue_resource = ExtResource("13_t8o45")
|
||||
dialogue_start = null
|
||||
|
||||
[node name="CollisionShape3D" type="CollisionShape3D" parent="donks/Sprite3D/Actionable"]
|
||||
transform = Transform3D(6.45607, 0, 0, 0, 6.45607, 0, 0, 0, 6.45607, 0, 0, 0)
|
||||
shape = SubResource("BoxShape3D_doo1a")
|
||||
|
||||
[node name="anesse" type="StaticBody3D" parent="."]
|
||||
transform = Transform3D(0.483027, 0, 0, 0, 0.483027, 0, 0, 0, 0.483027, 74.7172, 3.61877, 5.54051)
|
||||
|
||||
[node name="Sprite3D" type="Sprite3D" parent="anesse"]
|
||||
billboard = 1
|
||||
texture = ExtResource("14_6sos1")
|
||||
|
||||
[node name="Actionable" parent="anesse/Sprite3D" instance=ExtResource("3_mhr1s")]
|
||||
transform = Transform3D(0.922178, 0, 0, 0, 0.922178, 0, 0, 0, 0.922178, 0, 0, 0)
|
||||
dialogue_resource = ExtResource("15_bpwju")
|
||||
dialogue_start = null
|
||||
|
||||
[node name="CollisionShape3D" type="CollisionShape3D" parent="anesse/Sprite3D/Actionable"]
|
||||
transform = Transform3D(6.45607, 0, 0, 0, 6.45607, 0, 0, 0, 6.45607, 0, 0, 0)
|
||||
shape = SubResource("BoxShape3D_doo1a")
|
||||
|
||||
[node name="organz" type="StaticBody3D" parent="."]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, -1.21616, 0)
|
||||
|
||||
[node name="Sprite3D" type="Sprite3D" parent="organz"]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 47.4052, 8.97142, 0)
|
||||
billboard = 1
|
||||
texture = ExtResource("11_yqlsw")
|
||||
|
||||
[node name="Actionable" parent="organz/Sprite3D" instance=ExtResource("3_mhr1s")]
|
||||
transform = Transform3D(0.922178, 0, 0, 0, 0.922178, 0, 0, 0, 0.922178, 0, 0, 0)
|
||||
dialogue_resource = ExtResource("12_cys4f")
|
||||
dialogue_start = null
|
||||
|
||||
[node name="CollisionShape3D" type="CollisionShape3D" parent="organz/Sprite3D/Actionable"]
|
||||
transform = Transform3D(7.74728, 0, 0, 0, 7.74728, 0, 0, 0, 7.74728, 0, -3.25317, 0)
|
||||
shape = SubResource("BoxShape3D_doo1a")
|
||||
|
||||
[node name="DirectionalLight3D" type="DirectionalLight3D" parent="."]
|
||||
transform = Transform3D(1, 0, 0, 0, 0.962503, 0.27127, 0, -0.27127, 0.962503, 0.613758, 47.5456, 63.671)
|
||||
|
||||
[node name="sol" type="CSGMesh3D" parent="."]
|
||||
transform = Transform3D(5.90104, 0, 0, 0, 5.90104, 0, 0, 0, 5.90104, 76.5406, -2.46903, 17.7916)
|
||||
material_override = SubResource("StandardMaterial3D_bxoq6")
|
||||
use_collision = true
|
||||
mesh = ExtResource("10_7m7xt")
|
||||
|
||||
[node name="water" type="CSGMesh3D" parent="."]
|
||||
transform = Transform3D(5.48738, 0, 0, 0, 5.48738, 0, 0, 0, 5.48738, 64.7908, -4.24242, -363.872)
|
||||
material_override = SubResource("StandardMaterial3D_ea0gx")
|
||||
use_collision = true
|
||||
mesh = ExtResource("11_2rqw7")
|
||||
|
||||
[node name="WorldEnvironment" type="WorldEnvironment" parent="."]
|
||||
environment = SubResource("Environment_pws3r")
|
||||
208
NinonQUERAL/guoze/scenes/nunescrpt.tscn
Normal file
208
NinonQUERAL/guoze/scenes/nunescrpt.tscn
Normal file
@@ -0,0 +1,208 @@
|
||||
[gd_scene load_steps=30 format=3 uid="uid://bk5tmk443xdob"]
|
||||
|
||||
[ext_resource type="Script" path="res://script/player.gd" id="1_gg5e3"]
|
||||
[ext_resource type="Script" path="res://script/global.gd" id="1_m1nkr"]
|
||||
[ext_resource type="Texture2D" uid="uid://bh7fg7nllevjw" path="res://ress/perso/none.png" id="2_5051a"]
|
||||
[ext_resource type="PackedScene" uid="uid://ccgbjjf5bw3r8" path="res://scenes/actionable.tscn" id="3_mhr1s"]
|
||||
[ext_resource type="Resource" uid="uid://b7m8rks7e6jug" path="res://dialogues/dialogue.dialogue" id="5_sj6ig"]
|
||||
[ext_resource type="Resource" uid="uid://52ibfxjo5hys" path="res://dialogues/petibdialogue.dialogue" id="7_0ntul"]
|
||||
[ext_resource type="Texture2D" uid="uid://dwnemsacftiqp" path="res://ress/perso/ptnbb.png" id="7_u11ll"]
|
||||
[ext_resource type="Texture2D" uid="uid://q5ye4sc38xot" path="res://environnement/sol.jpg" id="9_8nlks"]
|
||||
[ext_resource type="Texture2D" uid="uid://bcljt5gst83pn" path="res://ress/perso/doux enfant.png" id="9_28kru"]
|
||||
[ext_resource type="Resource" uid="uid://djga8ytwmci4q" path="res://dialogues/chaircréat.dialogue" id="9_gdp74"]
|
||||
[ext_resource type="Texture2D" uid="uid://b2hu7cg0xx050" path="res://ress/perso/merca.png" id="9_y15t0"]
|
||||
[ext_resource type="ArrayMesh" uid="uid://wkaluoe6akjj" path="res://environnement/nature.obj" id="10_7m7xt"]
|
||||
[ext_resource type="ArrayMesh" uid="uid://dx6gtdvu52pgq" path="res://environnement/water.mtl.obj" id="11_2rqw7"]
|
||||
[ext_resource type="Resource" uid="uid://d3vpn53u411am" path="res://dialogues/mercca.dialogue" id="11_sydvd"]
|
||||
[ext_resource type="Texture2D" uid="uid://ro6aryvrkc4b" path="res://ress/perso/organz.png" id="11_yqlsw"]
|
||||
[ext_resource type="Texture2D" uid="uid://dynea0wbhqrxf" path="res://ress/perso/ane.png" id="12_rmeph"]
|
||||
[ext_resource type="Resource" uid="uid://bbww4r58fai0m" path="res://dialogues/donks.dialogue" id="13_tgs4x"]
|
||||
[ext_resource type="Texture2D" uid="uid://dljiuiin7nrlu" path="res://ress/perso/anesse.png" id="14_6sos1"]
|
||||
[ext_resource type="Resource" uid="uid://cn8bh4k43rj0o" path="res://dialogues/annesse.dialogue" id="15_t5ae3"]
|
||||
[ext_resource type="Resource" uid="uid://mej4bk7mc2qu" path="res://dialogues/organdialogue.dialogue" id="17_k664u"]
|
||||
|
||||
[sub_resource type="CapsuleShape3D" id="CapsuleShape3D_6vlm7"]
|
||||
|
||||
[sub_resource type="SphereShape3D" id="SphereShape3D_t7j46"]
|
||||
|
||||
[sub_resource type="GDScript" id="GDScript_vrsur"]
|
||||
|
||||
[sub_resource type="BoxShape3D" id="BoxShape3D_doo1a"]
|
||||
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_bxoq6"]
|
||||
albedo_texture = ExtResource("9_8nlks")
|
||||
uv1_scale = Vector3(50, 50, 50)
|
||||
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_ea0gx"]
|
||||
transparency = 1
|
||||
blend_mode = 1
|
||||
albedo_color = Color(0.494118, 0.847059, 0.737255, 1)
|
||||
roughness = 0.15
|
||||
|
||||
[sub_resource type="ProceduralSkyMaterial" id="ProceduralSkyMaterial_uxd6v"]
|
||||
sky_top_color = Color(0.407843, 0.815686, 0.298039, 1)
|
||||
sky_horizon_color = Color(0.384314, 0.733333, 0.619608, 1)
|
||||
sky_curve = 0.14489
|
||||
sky_cover = ExtResource("9_8nlks")
|
||||
sky_cover_modulate = Color(0.956863, 0.301961, 0.32549, 1)
|
||||
ground_bottom_color = Color(0.235294, 0.478431, 0.333333, 1)
|
||||
ground_horizon_color = Color(0.411765, 0.741176, 0.486275, 1)
|
||||
sun_angle_max = 21.82
|
||||
|
||||
[sub_resource type="Sky" id="Sky_cdwpx"]
|
||||
sky_material = SubResource("ProceduralSkyMaterial_uxd6v")
|
||||
|
||||
[sub_resource type="Environment" id="Environment_pws3r"]
|
||||
background_mode = 2
|
||||
sky = SubResource("Sky_cdwpx")
|
||||
|
||||
[node name="Node3D" type="Node3D"]
|
||||
script = ExtResource("1_m1nkr")
|
||||
|
||||
[node name="CharacterBody3D" type="CharacterBody3D" parent="."]
|
||||
transform = Transform3D(3.54013, 0, 0, 0, 1.58533, 0, 0, 0, 1, 4, 7.70788, 137)
|
||||
script = ExtResource("1_gg5e3")
|
||||
|
||||
[node name="CollisionShape3D" type="CollisionShape3D" parent="CharacterBody3D"]
|
||||
transform = Transform3D(0.435205, 0, 0, 0, 1, 0, 0, 0, 0.882788, 0, 0, 0)
|
||||
shape = SubResource("CapsuleShape3D_6vlm7")
|
||||
|
||||
[node name="head" type="Node3D" parent="CharacterBody3D"]
|
||||
transform = Transform3D(0.282476, 0, 0, 0, 0.630785, 0, 0, 0, 1, 0, -1.70809, 0)
|
||||
|
||||
[node name="Camera3D" type="Camera3D" parent="CharacterBody3D/head"]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 3.70788, 0)
|
||||
|
||||
[node name="Direction" type="Marker3D" parent="CharacterBody3D"]
|
||||
|
||||
[node name="ActionableFinder" type="Area3D" parent="CharacterBody3D/Direction"]
|
||||
collision_layer = 0
|
||||
collision_mask = 16
|
||||
|
||||
[node name="CollisionShape3D" type="CollisionShape3D" parent="CharacterBody3D/Direction/ActionableFinder"]
|
||||
transform = Transform3D(0.56, 0, 0, 0, 1.4, 0, 0, 0, 1.98, 0, 0, -1)
|
||||
shape = SubResource("SphereShape3D_t7j46")
|
||||
|
||||
[node name="NoKillNune" type="StaticBody3D" parent="."]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 4.08478, -44.041)
|
||||
script = SubResource("GDScript_vrsur")
|
||||
|
||||
[node name="Sprite3D" type="Sprite3D" parent="NoKillNune"]
|
||||
billboard = 1
|
||||
texture = ExtResource("2_5051a")
|
||||
|
||||
[node name="Actionable" parent="NoKillNune" instance=ExtResource("3_mhr1s")]
|
||||
dialogue_resource = ExtResource("5_sj6ig")
|
||||
|
||||
[node name="CollisionShape3D" type="CollisionShape3D" parent="NoKillNune/Actionable"]
|
||||
transform = Transform3D(6.45607, 0, 0, 0, 6.45607, 0, 0, 0, 6.45607, 0, 0, 0)
|
||||
shape = SubResource("BoxShape3D_doo1a")
|
||||
|
||||
[node name="getibb" type="StaticBody3D" parent="."]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 8.78734, 0)
|
||||
|
||||
[node name="Sprite3D" type="Sprite3D" parent="getibb"]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -92.1616, -5.42882, 99.6166)
|
||||
billboard = 1
|
||||
texture = ExtResource("7_u11ll")
|
||||
|
||||
[node name="Actionable" parent="getibb/Sprite3D" instance=ExtResource("3_mhr1s")]
|
||||
dialogue_resource = ExtResource("7_0ntul")
|
||||
|
||||
[node name="CollisionShape3D" type="CollisionShape3D" parent="getibb/Sprite3D/Actionable"]
|
||||
transform = Transform3D(6.45607, 0, 0, 0, 6.45607, 0, 0, 0, 6.45607, 0, 0, 0)
|
||||
shape = SubResource("BoxShape3D_doo1a")
|
||||
|
||||
[node name="chairecréat" type="StaticBody3D" parent="."]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 24.2112, 0, 0)
|
||||
|
||||
[node name="Sprite3D" type="Sprite3D" parent="chairecréat"]
|
||||
transform = Transform3D(3.7104, 0, 0, 0, 3.7104, 0, 0, 0, 3.7104, -63.6458, 8.57669, 0)
|
||||
billboard = 1
|
||||
texture = ExtResource("9_28kru")
|
||||
|
||||
[node name="Actionable" parent="chairecréat/Sprite3D" instance=ExtResource("3_mhr1s")]
|
||||
dialogue_resource = ExtResource("9_gdp74")
|
||||
|
||||
[node name="CollisionShape3D" type="CollisionShape3D" parent="chairecréat/Sprite3D/Actionable"]
|
||||
transform = Transform3D(6.45607, 0, 0, 0, 6.45607, 0, 0, 0, 6.45607, 0, 0, 0)
|
||||
shape = SubResource("BoxShape3D_doo1a")
|
||||
|
||||
[node name="merca" type="StaticBody3D" parent="."]
|
||||
transform = Transform3D(0.483027, 0, 0, 0, 0.483027, 0, 0, 0, 0.483027, 64.6558, 4.03859, 17.2205)
|
||||
|
||||
[node name="Sprite3D" type="Sprite3D" parent="merca"]
|
||||
billboard = 1
|
||||
texture = ExtResource("9_y15t0")
|
||||
|
||||
[node name="Actionable" parent="merca/Sprite3D" instance=ExtResource("3_mhr1s")]
|
||||
transform = Transform3D(0.922178, 0, 0, 0, 0.922178, 0, 0, 0, 0.922178, 0, 0, 0)
|
||||
dialogue_resource = ExtResource("11_sydvd")
|
||||
|
||||
[node name="CollisionShape3D" type="CollisionShape3D" parent="merca/Sprite3D/Actionable"]
|
||||
transform = Transform3D(6.45607, 0, 0, 0, 6.45607, 0, 0, 0, 6.45607, 0, 0, 0)
|
||||
shape = SubResource("BoxShape3D_doo1a")
|
||||
|
||||
[node name="donks" type="StaticBody3D" parent="."]
|
||||
transform = Transform3D(0.483027, 0, 0, 0, 0.483027, 0, 0, 0, 0.483027, 64.6558, 3.61877, -24.6531)
|
||||
|
||||
[node name="Sprite3D" type="Sprite3D" parent="donks"]
|
||||
billboard = 1
|
||||
texture = ExtResource("12_rmeph")
|
||||
|
||||
[node name="Actionable" parent="donks/Sprite3D" instance=ExtResource("3_mhr1s")]
|
||||
transform = Transform3D(0.922178, 0, 0, 0, 0.922178, 0, 0, 0, 0.922178, 0, 0, 0)
|
||||
dialogue_resource = ExtResource("13_tgs4x")
|
||||
|
||||
[node name="CollisionShape3D" type="CollisionShape3D" parent="donks/Sprite3D/Actionable"]
|
||||
transform = Transform3D(6.45607, 0, 0, 0, 6.45607, 0, 0, 0, 6.45607, 0, 0, 0)
|
||||
shape = SubResource("BoxShape3D_doo1a")
|
||||
|
||||
[node name="anesse" type="StaticBody3D" parent="."]
|
||||
transform = Transform3D(0.483027, 0, 0, 0, 0.483027, 0, 0, 0, 0.483027, 74.7172, 3.61877, 5.54051)
|
||||
|
||||
[node name="Sprite3D" type="Sprite3D" parent="anesse"]
|
||||
billboard = 1
|
||||
texture = ExtResource("14_6sos1")
|
||||
|
||||
[node name="Actionable" parent="anesse/Sprite3D" instance=ExtResource("3_mhr1s")]
|
||||
transform = Transform3D(0.922178, 0, 0, 0, 0.922178, 0, 0, 0, 0.922178, 0, 0, 0)
|
||||
dialogue_resource = ExtResource("15_t5ae3")
|
||||
|
||||
[node name="CollisionShape3D" type="CollisionShape3D" parent="anesse/Sprite3D/Actionable"]
|
||||
transform = Transform3D(6.45607, 0, 0, 0, 6.45607, 0, 0, 0, 6.45607, 0, 0, 0)
|
||||
shape = SubResource("BoxShape3D_doo1a")
|
||||
|
||||
[node name="organz" type="StaticBody3D" parent="."]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, -1.21616, 0)
|
||||
|
||||
[node name="Sprite3D" type="Sprite3D" parent="organz"]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 47.4052, 8.97142, 0)
|
||||
billboard = 1
|
||||
texture = ExtResource("11_yqlsw")
|
||||
|
||||
[node name="Actionable" parent="organz/Sprite3D" instance=ExtResource("3_mhr1s")]
|
||||
transform = Transform3D(0.922178, 0, 0, 0, 0.922178, 0, 0, 0, 0.922178, 0, 0, 0)
|
||||
dialogue_resource = ExtResource("17_k664u")
|
||||
|
||||
[node name="CollisionShape3D" type="CollisionShape3D" parent="organz/Sprite3D/Actionable"]
|
||||
transform = Transform3D(7.74728, 0, 0, 0, 7.74728, 0, 0, 0, 7.74728, 0, -3.25317, 0)
|
||||
shape = SubResource("BoxShape3D_doo1a")
|
||||
|
||||
[node name="DirectionalLight3D" type="DirectionalLight3D" parent="."]
|
||||
transform = Transform3D(1, 0, 0, 0, 0.962503, 0.27127, 0, -0.27127, 0.962503, 0.613758, 47.5456, 63.671)
|
||||
|
||||
[node name="sol" type="CSGMesh3D" parent="."]
|
||||
transform = Transform3D(5.90104, 0, 0, 0, 5.90104, 0, 0, 0, 5.90104, 76.5406, -2.46903, 17.7916)
|
||||
material_override = SubResource("StandardMaterial3D_bxoq6")
|
||||
use_collision = true
|
||||
mesh = ExtResource("10_7m7xt")
|
||||
|
||||
[node name="water" type="CSGMesh3D" parent="."]
|
||||
transform = Transform3D(5.48738, 0, 0, 0, 5.48738, 0, 0, 0, 5.48738, 64.7908, -4.24242, -363.872)
|
||||
material_override = SubResource("StandardMaterial3D_ea0gx")
|
||||
use_collision = true
|
||||
mesh = ExtResource("11_2rqw7")
|
||||
|
||||
[node name="WorldEnvironment" type="WorldEnvironment" parent="."]
|
||||
environment = SubResource("Environment_pws3r")
|
||||
Reference in New Issue
Block a user