446d8d177c
화면 아래 가장자리에 가로로 깔리는 Godot 4.7 위젯. 거품을 모아 바다를 꾸미고, 꾸밀수록 거품이 더 빨리 모인다. - 도킹 창: 투명·테두리 없음, 화면 폭 전체, 위/아래 가장자리 스냅, 높이 프리셋, 클릭 통과(모서리로 복귀), DPI 배율 보정 - 3/4 부감 격자: 구역당 9x6, 전체 45x6 = 270칸. 바닥은 위에서, 물체는 서 있는 모습으로 그리고 Y 정렬로 앞뒤를 가린다 - 구역 5개(얕은 바다 -> 열수구): 앞 구역을 꾸며야 다음이 열린다 - 칸이 곧 한계인 경제: 배치/이동/치우기(절반 환불), 여러 칸짜리 장식 - 저장: 30초 자동 저장, 백업 한 세대, 8시간 상한 오프라인 보상, 격자 이전 형식 저장본 자동 이전 - 스모크 테스트 60여 개 (test.ps1) Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
29 lines
870 B
Plaintext
29 lines
870 B
Plaintext
[gd_scene load_steps=5 format=3]
|
|
|
|
[ext_resource type="Script" path="res://scenes/main.gd" id="1_main"]
|
|
[ext_resource type="PackedScene" path="res://scenes/aquarium/aquarium.tscn" id="2_aquarium"]
|
|
[ext_resource type="PackedScene" path="res://scenes/ui/hud.tscn" id="3_hud"]
|
|
[ext_resource type="PackedScene" path="res://scenes/ui/shop_panel.tscn" id="4_shop"]
|
|
|
|
[node name="Main" type="Control"]
|
|
layout_mode = 3
|
|
anchors_preset = 15
|
|
anchor_right = 1.0
|
|
anchor_bottom = 1.0
|
|
grow_horizontal = 2
|
|
grow_vertical = 2
|
|
mouse_filter = 2
|
|
script = ExtResource("1_main")
|
|
|
|
[node name="Aquarium" parent="." instance=ExtResource("2_aquarium")]
|
|
layout_mode = 1
|
|
|
|
[node name="HUD" parent="." instance=ExtResource("3_hud")]
|
|
layout_mode = 1
|
|
|
|
[node name="ShopPanel" parent="." instance=ExtResource("4_shop")]
|
|
visible = false
|
|
layout_mode = 1
|
|
|
|
[node name="ContextMenu" type="PopupMenu" parent="."]
|