diff --git a/Stage/stage.gd b/Stage/stage.gd index ad0804f..c6e1205 100644 --- a/Stage/stage.gd +++ b/Stage/stage.gd @@ -1,3 +1,94 @@ extends Control -@export var Pages: Array[Container] +@export var stage_pages: Array[Container] +@export var stage_page_scroller: ScrollContainer + +const PAGE_COUNT = 5 +const PAGE_WIDTH = 1080 +const DRAG_TOLERANCE = 360 +const SWIPE_DURATION: float = 2 +const SWIPE_DELAY = 2000 # msec + +var g_tween: Tween = null +var g_dragged_start: Vector2 = Vector2.ZERO +var g_scroll_start: int = 0 +var g_current_page: int = 0 + +var g_last_scroll_updated: int = 0 + +var f_check_swipe: bool = false +var g_swipe_time_delta: float = 0 + +var g_counters: Dictionary[String, Counter] = { + "swipe": Counter.new(), + } + + +func _ready() -> void: + pass + + +func _init() -> void: + pass + #page_scroller.scroll_horizontal = 3240 + + +func _process(delta: float) -> void: + var actions = _check_counters(delta) + _do_actions(actions) + + +func _check_counters(delta: float) -> Array: + var actions: Array = [] + for k in g_counters: + var cnt: Counter = g_counters[k] + if not cnt.is_active: + continue + + cnt.value += delta + if cnt.value >= cnt.sec: + actions.append(k) + cnt.value = 0 + cnt.is_active = false + + return actions + +func _do_actions(actions: Array) -> void: + for action: String in actions: + match action: + "swipe": + _swipe_to_nearest_page() + +func button_pressed() -> void: + print(name) + + + +func _swipe_to_nearest_page() -> void: + if stage_page_scroller.scroll_horizontal % PAGE_WIDTH == 0: return + + var new_page: int = round(1.0 * stage_page_scroller.scroll_horizontal / PAGE_WIDTH) + #print(stage_page_scroller.scroll_horizontal, " | ", 1.0 * stage_page_scroller.scroll_horizontal / PAGE_WIDTH, " | ", new_page) + + if g_tween != null: + if g_tween.is_running(): + return + + g_tween = stage_page_scroller.get_tree().create_tween() + g_tween.tween_property(stage_page_scroller, "scroll_horizontal", + new_page * PAGE_WIDTH, SWIPE_DURATION).set_trans(Tween.TRANS_CUBIC).set_ease(Tween.EASE_OUT) + + +func _input(event: InputEvent) -> void: + + if event is InputEventScreenDrag: + stage_page_scroller.scroll_horizontal = clamp( + stage_page_scroller.scroll_horizontal - PAGE_COUNT * event.screen_relative.x, + 0, PAGE_WIDTH * (PAGE_COUNT - 1)) + g_counters.swipe.is_active = true + g_counters.swipe.value = 0 + elif event is InputEventPanGesture: + g_counters.swipe.is_active = true + g_counters.swipe.value = 0 + elif event is InputEventScreenTouch: + pass diff --git a/Tools/Counter.gd b/Tools/Counter.gd new file mode 100644 index 0000000..d844c9d --- /dev/null +++ b/Tools/Counter.gd @@ -0,0 +1,29 @@ +class_name Counter extends RefCounted + +var is_active: bool = false + + +var sec: float = 1 +var value: float = 0 + +#func set_inactive() -> void: + #is_active = false +# +#func set_active() -> void: + #is_active = true + +func is_reached() -> bool: + if value >= sec: + return true + else: + return false + +func add_delta(delta: float) -> void: + value += delta + + +func debug() -> void: + print(is_active, " | ", value, " of ", sec) + +#func _init(): + diff --git a/Tools/Counter.gd.uid b/Tools/Counter.gd.uid new file mode 100644 index 0000000..930dd48 --- /dev/null +++ b/Tools/Counter.gd.uid @@ -0,0 +1 @@ +uid://cxuq0pyjwds5o diff --git a/UI/Buttons/item_button.gd b/UI/Buttons/item_button.gd index fedb691..caec244 100644 --- a/UI/Buttons/item_button.gd +++ b/UI/Buttons/item_button.gd @@ -18,8 +18,3 @@ func init_button(initial_dict: Dictionary): func _on_button_up() -> void: print("hello button") #Texture_button.texture_normal = load("res://UI/1-Items/Helium.png") - - - - - diff --git a/export_presets.cfg b/export_presets.cfg index 81abef8..81e0a29 100644 --- a/export_presets.cfg +++ b/export_presets.cfg @@ -8,7 +8,7 @@ custom_features="" export_filter="all_resources" include_filter="" exclude_filter="" -export_path="../../Sync/Owad/Builds/Owniverse/owniverse.II.20260303.exe" +export_path="../../Sync/Owad/Owniverse.I/Builds/owniverse.II.20260309.exe" patches=PackedStringArray() patch_delta_encoding=false patch_delta_compression_level_zstd=19 @@ -295,3 +295,263 @@ permissions/write_sms=false permissions/write_social_stream=false permissions/write_sync_settings=false permissions/write_user_dictionary=false + +[preset.2] + +name="macOS" +platform="macOS" +runnable=true +dedicated_server=false +custom_features="" +export_filter="all_resources" +include_filter="" +exclude_filter="" +export_path="../../Sync/Owad/Owniverse.I/Builds/owniverse.II.20260309.dmg" +patches=PackedStringArray() +patch_delta_encoding=false +patch_delta_compression_level_zstd=19 +patch_delta_min_reduction=0.1 +patch_delta_include_filters="*" +patch_delta_exclude_filters="" +encryption_include_filters="" +encryption_exclude_filters="" +seed=0 +encrypt_pck=false +encrypt_directory=false +script_export_mode=2 + +[preset.2.options] + +export/distribution_type=1 +binary_format/architecture="universal" +custom_template/debug="" +custom_template/release="" +debug/export_console_wrapper=1 +application/liquid_glass_icon="" +application/icon="" +application/icon_interpolation=4 +application/bundle_identifier="com.KIDGameProduction.Owniverse" +application/signature="" +application/app_category="Games" +application/short_version="" +application/version="" +application/copyright="" +application/copyright_localized={} +application/min_macos_version_x86_64="10.12" +application/min_macos_version_arm64="11.00" +application/export_angle=0 +display/high_res=true +shader_baker/enabled=false +application/additional_plist_content="" +xcode/platform_build="14C18" +xcode/sdk_version="13.1" +xcode/sdk_build="22C55" +xcode/sdk_name="macosx13.1" +xcode/xcode_version="1420" +xcode/xcode_build="14C18" +codesign/codesign=3 +codesign/installer_identity="" +codesign/apple_team_id="" +codesign/identity="" +codesign/entitlements/custom_file="" +codesign/entitlements/allow_jit_code_execution=false +codesign/entitlements/allow_unsigned_executable_memory=false +codesign/entitlements/allow_dyld_environment_variables=false +codesign/entitlements/disable_library_validation=false +codesign/entitlements/audio_input=false +codesign/entitlements/camera=false +codesign/entitlements/location=false +codesign/entitlements/address_book=false +codesign/entitlements/calendars=false +codesign/entitlements/photos_library=false +codesign/entitlements/apple_events=false +codesign/entitlements/debugging=false +codesign/entitlements/app_sandbox/enabled=false +codesign/entitlements/app_sandbox/network_server=false +codesign/entitlements/app_sandbox/network_client=false +codesign/entitlements/app_sandbox/device_usb=false +codesign/entitlements/app_sandbox/device_bluetooth=false +codesign/entitlements/app_sandbox/files_downloads=0 +codesign/entitlements/app_sandbox/files_pictures=0 +codesign/entitlements/app_sandbox/files_music=0 +codesign/entitlements/app_sandbox/files_movies=0 +codesign/entitlements/app_sandbox/files_user_selected=0 +codesign/entitlements/app_sandbox/helper_executables=[] +codesign/entitlements/additional="" +codesign/custom_options=PackedStringArray() +notarization/notarization=1 +privacy/microphone_usage_description="" +privacy/microphone_usage_description_localized={} +privacy/camera_usage_description="" +privacy/camera_usage_description_localized={} +privacy/location_usage_description="" +privacy/location_usage_description_localized={} +privacy/address_book_usage_description="" +privacy/address_book_usage_description_localized={} +privacy/calendar_usage_description="" +privacy/calendar_usage_description_localized={} +privacy/photos_library_usage_description="" +privacy/photos_library_usage_description_localized={} +privacy/desktop_folder_usage_description="" +privacy/desktop_folder_usage_description_localized={} +privacy/documents_folder_usage_description="" +privacy/documents_folder_usage_description_localized={} +privacy/downloads_folder_usage_description="" +privacy/downloads_folder_usage_description_localized={} +privacy/network_volumes_usage_description="" +privacy/network_volumes_usage_description_localized={} +privacy/removable_volumes_usage_description="" +privacy/removable_volumes_usage_description_localized={} +privacy/tracking_enabled=false +privacy/tracking_domains=PackedStringArray() +privacy/collected_data/name/collected=false +privacy/collected_data/name/linked_to_user=false +privacy/collected_data/name/used_for_tracking=false +privacy/collected_data/name/collection_purposes=0 +privacy/collected_data/email_address/collected=false +privacy/collected_data/email_address/linked_to_user=false +privacy/collected_data/email_address/used_for_tracking=false +privacy/collected_data/email_address/collection_purposes=0 +privacy/collected_data/phone_number/collected=false +privacy/collected_data/phone_number/linked_to_user=false +privacy/collected_data/phone_number/used_for_tracking=false +privacy/collected_data/phone_number/collection_purposes=0 +privacy/collected_data/physical_address/collected=false +privacy/collected_data/physical_address/linked_to_user=false +privacy/collected_data/physical_address/used_for_tracking=false +privacy/collected_data/physical_address/collection_purposes=0 +privacy/collected_data/other_contact_info/collected=false +privacy/collected_data/other_contact_info/linked_to_user=false +privacy/collected_data/other_contact_info/used_for_tracking=false +privacy/collected_data/other_contact_info/collection_purposes=0 +privacy/collected_data/health/collected=false +privacy/collected_data/health/linked_to_user=false +privacy/collected_data/health/used_for_tracking=false +privacy/collected_data/health/collection_purposes=0 +privacy/collected_data/fitness/collected=false +privacy/collected_data/fitness/linked_to_user=false +privacy/collected_data/fitness/used_for_tracking=false +privacy/collected_data/fitness/collection_purposes=0 +privacy/collected_data/payment_info/collected=false +privacy/collected_data/payment_info/linked_to_user=false +privacy/collected_data/payment_info/used_for_tracking=false +privacy/collected_data/payment_info/collection_purposes=0 +privacy/collected_data/credit_info/collected=false +privacy/collected_data/credit_info/linked_to_user=false +privacy/collected_data/credit_info/used_for_tracking=false +privacy/collected_data/credit_info/collection_purposes=0 +privacy/collected_data/other_financial_info/collected=false +privacy/collected_data/other_financial_info/linked_to_user=false +privacy/collected_data/other_financial_info/used_for_tracking=false +privacy/collected_data/other_financial_info/collection_purposes=0 +privacy/collected_data/precise_location/collected=false +privacy/collected_data/precise_location/linked_to_user=false +privacy/collected_data/precise_location/used_for_tracking=false +privacy/collected_data/precise_location/collection_purposes=0 +privacy/collected_data/coarse_location/collected=false +privacy/collected_data/coarse_location/linked_to_user=false +privacy/collected_data/coarse_location/used_for_tracking=false +privacy/collected_data/coarse_location/collection_purposes=0 +privacy/collected_data/sensitive_info/collected=false +privacy/collected_data/sensitive_info/linked_to_user=false +privacy/collected_data/sensitive_info/used_for_tracking=false +privacy/collected_data/sensitive_info/collection_purposes=0 +privacy/collected_data/contacts/collected=false +privacy/collected_data/contacts/linked_to_user=false +privacy/collected_data/contacts/used_for_tracking=false +privacy/collected_data/contacts/collection_purposes=0 +privacy/collected_data/emails_or_text_messages/collected=false +privacy/collected_data/emails_or_text_messages/linked_to_user=false +privacy/collected_data/emails_or_text_messages/used_for_tracking=false +privacy/collected_data/emails_or_text_messages/collection_purposes=0 +privacy/collected_data/photos_or_videos/collected=false +privacy/collected_data/photos_or_videos/linked_to_user=false +privacy/collected_data/photos_or_videos/used_for_tracking=false +privacy/collected_data/photos_or_videos/collection_purposes=0 +privacy/collected_data/audio_data/collected=false +privacy/collected_data/audio_data/linked_to_user=false +privacy/collected_data/audio_data/used_for_tracking=false +privacy/collected_data/audio_data/collection_purposes=0 +privacy/collected_data/gameplay_content/collected=false +privacy/collected_data/gameplay_content/linked_to_user=false +privacy/collected_data/gameplay_content/used_for_tracking=false +privacy/collected_data/gameplay_content/collection_purposes=0 +privacy/collected_data/customer_support/collected=false +privacy/collected_data/customer_support/linked_to_user=false +privacy/collected_data/customer_support/used_for_tracking=false +privacy/collected_data/customer_support/collection_purposes=0 +privacy/collected_data/other_user_content/collected=false +privacy/collected_data/other_user_content/linked_to_user=false +privacy/collected_data/other_user_content/used_for_tracking=false +privacy/collected_data/other_user_content/collection_purposes=0 +privacy/collected_data/browsing_history/collected=false +privacy/collected_data/browsing_history/linked_to_user=false +privacy/collected_data/browsing_history/used_for_tracking=false +privacy/collected_data/browsing_history/collection_purposes=0 +privacy/collected_data/search_history/collected=false +privacy/collected_data/search_history/linked_to_user=false +privacy/collected_data/search_history/used_for_tracking=false +privacy/collected_data/search_history/collection_purposes=0 +privacy/collected_data/user_id/collected=false +privacy/collected_data/user_id/linked_to_user=false +privacy/collected_data/user_id/used_for_tracking=false +privacy/collected_data/user_id/collection_purposes=0 +privacy/collected_data/device_id/collected=false +privacy/collected_data/device_id/linked_to_user=false +privacy/collected_data/device_id/used_for_tracking=false +privacy/collected_data/device_id/collection_purposes=0 +privacy/collected_data/purchase_history/collected=false +privacy/collected_data/purchase_history/linked_to_user=false +privacy/collected_data/purchase_history/used_for_tracking=false +privacy/collected_data/purchase_history/collection_purposes=0 +privacy/collected_data/product_interaction/collected=false +privacy/collected_data/product_interaction/linked_to_user=false +privacy/collected_data/product_interaction/used_for_tracking=false +privacy/collected_data/product_interaction/collection_purposes=0 +privacy/collected_data/advertising_data/collected=false +privacy/collected_data/advertising_data/linked_to_user=false +privacy/collected_data/advertising_data/used_for_tracking=false +privacy/collected_data/advertising_data/collection_purposes=0 +privacy/collected_data/other_usage_data/collected=false +privacy/collected_data/other_usage_data/linked_to_user=false +privacy/collected_data/other_usage_data/used_for_tracking=false +privacy/collected_data/other_usage_data/collection_purposes=0 +privacy/collected_data/crash_data/collected=false +privacy/collected_data/crash_data/linked_to_user=false +privacy/collected_data/crash_data/used_for_tracking=false +privacy/collected_data/crash_data/collection_purposes=0 +privacy/collected_data/performance_data/collected=false +privacy/collected_data/performance_data/linked_to_user=false +privacy/collected_data/performance_data/used_for_tracking=false +privacy/collected_data/performance_data/collection_purposes=0 +privacy/collected_data/other_diagnostic_data/collected=false +privacy/collected_data/other_diagnostic_data/linked_to_user=false +privacy/collected_data/other_diagnostic_data/used_for_tracking=false +privacy/collected_data/other_diagnostic_data/collection_purposes=0 +privacy/collected_data/environment_scanning/collected=false +privacy/collected_data/environment_scanning/linked_to_user=false +privacy/collected_data/environment_scanning/used_for_tracking=false +privacy/collected_data/environment_scanning/collection_purposes=0 +privacy/collected_data/hands/collected=false +privacy/collected_data/hands/linked_to_user=false +privacy/collected_data/hands/used_for_tracking=false +privacy/collected_data/hands/collection_purposes=0 +privacy/collected_data/head/collected=false +privacy/collected_data/head/linked_to_user=false +privacy/collected_data/head/used_for_tracking=false +privacy/collected_data/head/collection_purposes=0 +privacy/collected_data/other_data_types/collected=false +privacy/collected_data/other_data_types/linked_to_user=false +privacy/collected_data/other_data_types/used_for_tracking=false +privacy/collected_data/other_data_types/collection_purposes=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="#!/usr/bin/env bash +unzip -o -q \"{temp_dir}/{archive_name}\" -d \"{temp_dir}\" +open \"{temp_dir}/{exe_name}.app\" --args {cmd_args}" +ssh_remote_deploy/cleanup_script="#!/usr/bin/env bash +pkill -x -f \"{temp_dir}/{exe_name}.app/Contents/MacOS/{exe_name} {cmd_args}\" +rm -rf \"{temp_dir}\"" diff --git a/project.godot b/project.godot index 2a69483..b41d476 100644 --- a/project.godot +++ b/project.godot @@ -34,6 +34,10 @@ window/size/extend_to_title=true window/stretch/mode="viewport" window/handheld/orientation=1 +[input_devices] + +pointing/emulate_touch_from_mouse=true + [rendering] renderer/rendering_method="mobile" diff --git a/world.tscn b/world.tscn index 62a53b0..a104e18 100644 --- a/world.tscn +++ b/world.tscn @@ -7,30 +7,126 @@ [ext_resource type="Script" uid="uid://xte4iwvipeve" path="res://command_processor.gd" id="5_036b0"] [ext_resource type="PackedScene" uid="uid://d3xjfxwe3w16v" path="res://UI/Buttons/item_button.tscn" id="5_dwbse"] [ext_resource type="Texture2D" uid="uid://ga2cmjyqwguq" path="res://UI/1-Resources/Space1.png" id="6_gbfbk"] +[ext_resource type="Texture2D" uid="uid://cx3kjgbrnnw0p" path="res://UI/0-Forces/Shovelin.png" id="7_4ll5h"] [ext_resource type="Texture2D" uid="uid://cwk20fmuby3su" path="res://UI/1-Resources/Hydrogen.png" id="7_wse8f"] [ext_resource type="Texture2D" uid="uid://cui0cypev80ye" path="res://UI/1-Resources/Helium.png" id="8_ic0uy"] +[ext_resource type="Texture2D" uid="uid://w7i24umbak03" path="res://UI/0-Forces/Inflatin.png" id="8_t63o8"] +[ext_resource type="Texture2D" uid="uid://cablnnhm4qd0u" path="res://UI/0-Forces/Temporite.png" id="9_croyg"] [ext_resource type="Texture2D" uid="uid://boah2ksq0o3ya" path="res://UI/1-Resources/Metal.png" id="9_k3n1d"] [ext_resource type="Texture2D" uid="uid://c8vxmhm677t84" path="res://UI/2-Stars/2-1-Nebula.png" id="10_hiqwa"] +[ext_resource type="Texture2D" uid="uid://bcfo2b321wfho" path="res://UI/0-Forces/Collisite.png" id="10_w8bmm"] [ext_resource type="Texture2D" uid="uid://dcqfx11fkc6de" path="res://UI/2-Stars/2-2-Globula.png" id="11_2u3nc"] +[ext_resource type="Texture2D" uid="uid://fxodj1ee5t6a" path="res://UI/0-Forces/Primex.png" id="11_8gfof"] +[ext_resource type="Texture2D" uid="uid://slmsycajkv78" path="res://UI/0-Forces/Singularite.png" id="12_bnxrb"] [ext_resource type="Texture2D" uid="uid://bhy81joehi67d" path="res://UI/2-Stars/2-3-StarNursery.png" id="12_udxuc"] +[ext_resource type="Texture2D" uid="uid://dxgj3gmt7gym6" path="res://UI/0-Forces/Renewin.png" id="13_8arjy"] [ext_resource type="Texture2D" uid="uid://oec8mj1o8757" path="res://UI/2-Stars/2-4-MolecularCloud.png" id="13_ikiii"] [ext_resource type="Texture2D" uid="uid://boh3xvveg0qqw" path="res://UI/2-Stars/2-5-ActiveStarNursery.png" id="14_cbp6q"] +[ext_resource type="Texture2D" uid="uid://c2h1d5ve0h7c6" path="res://UI/0-Forces/Infusite.png" id="14_inanf"] [ext_resource type="Texture2D" uid="uid://cndghbkch3vt8" path="res://UI/2-Stars/2-6-BrownDwarf.png" id="15_26xuy"] +[ext_resource type="Texture2D" uid="uid://dqu2fvx8d6gny" path="res://UI/0-Forces/Frostin.png" id="15_itvcc"] [ext_resource type="Texture2D" uid="uid://dcy5djbh0ha1l" path="res://UI/2-Stars/2-7-RedDwarf.png" id="16_bc84e"] +[ext_resource type="Texture2D" uid="uid://bgmt7kwfv8ifk" path="res://UI/0-Forces/Destellarite.png" id="16_kb3vm"] +[ext_resource type="Texture2D" uid="uid://ucl87s4sw1pf" path="res://UI/0-Forces/Rockex.png" id="17_e6jkr"] [ext_resource type="Texture2D" uid="uid://cxdb8hkgr1va8" path="res://UI/2-Stars/2-8-OrangeDwarf.png" id="17_wukud"] +[ext_resource type="Texture2D" uid="uid://blfguhbhewnlp" path="res://UI/0-Forces/Panspermin.png" id="18_2vwdk"] [ext_resource type="Texture2D" uid="uid://cc8kqt0cb0s2k" path="res://UI/2-Stars/2-9-YellowDwarf.png" id="18_il2jm"] +[ext_resource type="Texture2D" uid="uid://d4jntmophaceg" path="res://UI/0-Forces/Gaianite.png" id="19_8wjcy"] [ext_resource type="Texture2D" uid="uid://dskxy368y5cvc" path="res://UI/2-Stars/2-10-WhiteYellowDwarf.png" id="19_wjb0r"] [ext_resource type="Texture2D" uid="uid://brihxqevv3675" path="res://UI/2-Stars/2-11-RedGiant.png" id="20_qktwf"] -[ext_resource type="Texture2D" uid="uid://crj4nqhe8ki8t" path="res://UI/2-Stars/2-12-YellowGiant.png" id="21_bh8nc"] +[ext_resource type="Texture2D" uid="uid://cl7aha06twqyx" path="res://UI/0-Forces/Darwinite.png" id="20_xh3xj"] +[ext_resource type="Texture2D" uid="uid://cqkaotm3d4rm3" path="res://UI/0-Forces/Edenex.png" id="21_ofgfh"] +[ext_resource type="Texture2D" uid="uid://cuxfbw7i6m6aj" path="res://UI/0-Forces/Pacifin.png" id="22_6d1iy"] [ext_resource type="Texture2D" uid="uid://dpi8cw4vf0l83" path="res://UI/2-Stars/2-13-BlueGiant.png" id="22_jjr1n"] +[ext_resource type="Texture2D" uid="uid://do42fdy2wjj81" path="res://UI/0-Forces/Enragein.png" id="23_awgtj"] [ext_resource type="Texture2D" uid="uid://bx307gkpqi3fc" path="res://UI/2-Stars/2-14-Supergiant.png" id="23_gggvi"] +[ext_resource type="Texture2D" uid="uid://12trglgaoe0v" path="res://UI/0-Forces/Moralite.png" id="24_mou3f"] [ext_resource type="Texture2D" uid="uid://c3lgu6ptugl1p" path="res://UI/2-Stars/2-15-Hypergiant.png" id="24_w44yn"] [ext_resource type="Texture2D" uid="uid://hka74npi70dh" path="res://UI/2-Stars/2-16-WhiteDwarf.png" id="25_6ah6f"] +[ext_resource type="Texture2D" uid="uid://dwg02qhfo2tij" path="res://UI/0-Forces/Discriminite.png" id="25_8343f"] +[ext_resource type="Texture2D" uid="uid://ddgkt6yel0dpu" path="res://UI/0-Forces/Reprex.png" id="26_2lhbq"] [ext_resource type="Texture2D" uid="uid://dtvfdbl6ijf5" path="res://UI/2-Stars/2-17-NeutronStar.png" id="26_g1i3r"] [ext_resource type="Texture2D" uid="uid://wfd2atqrkt5d" path="res://UI/2-Stars/2-18-Magnetar.png" id="27_my276"] [ext_resource type="PackedScene" uid="uid://dg15dpxiepicb" path="res://UI/Border/border.tscn" id="28_o3ebs"] [ext_resource type="Texture2D" uid="uid://twa2gqxiticr" path="res://UI/2-Stars/2-19-BlackHole.png" id="28_yx0jh"] [ext_resource type="Texture2D" uid="uid://6m03vbjk7ulv" path="res://UI/2-Stars/2-20-SupermassiveBlackHole.png" id="29_1ew0l"] +[ext_resource type="Texture2D" uid="uid://cdafh4iwuvu8i" path="res://UI/3-Structures/StarClusterScattered.png" id="31_ytpkv"] +[ext_resource type="Texture2D" uid="uid://b6v8pq42rtuhg" path="res://UI/3-Structures/StarClusterSmall.png" id="32_jas3d"] +[ext_resource type="Texture2D" uid="uid://bret2sr7ifu7" path="res://UI/3-Structures/StarClusterMedium.png" id="33_7htu6"] +[ext_resource type="Texture2D" uid="uid://pygcs5rn7pua" path="res://UI/3-Structures/StarClusterLarge.png" id="34_7qk3m"] +[ext_resource type="Texture2D" uid="uid://dg14armuo2y7b" path="res://UI/3-Structures/StarClusterGiant.png" id="35_xpnt2"] +[ext_resource type="Texture2D" uid="uid://tnkg1dyhu5ce" path="res://UI/3-Structures/GalaxyEllipticalDwarf.png" id="36_ruyqm"] +[ext_resource type="Texture2D" uid="uid://c6ubmcdwcdiu2" path="res://UI/3-Structures/GalaxyEllipticalSmall.png" id="37_fnoqa"] +[ext_resource type="Texture2D" uid="uid://8dlyaau3jmoi" path="res://UI/3-Structures/GalaxyEllipticalMedium.png" id="38_nx736"] +[ext_resource type="Texture2D" uid="uid://ejsx3kocvxtw" path="res://UI/3-Structures/GalaxyEllipticalLarge.png" id="39_55kwu"] +[ext_resource type="Texture2D" uid="uid://csj4nb54lvia1" path="res://UI/3-Structures/GalaxyEllipticalGiant.png" id="40_f3o6s"] +[ext_resource type="Texture2D" uid="uid://btrfqb6cao4is" path="res://UI/3-Structures/GalaxySpiralDwarf.png" id="41_w4lh7"] +[ext_resource type="Texture2D" uid="uid://bi4qig1qgtvee" path="res://UI/2-Stars/2-12-WhiteStar.png" id="42_e6jkr"] +[ext_resource type="Texture2D" uid="uid://2ojsgdqnwbmf" path="res://UI/3-Structures/GalaxySpiralSmall.png" id="42_k3lar"] +[ext_resource type="Texture2D" uid="uid://yuglditxtb1v" path="res://UI/3-Structures/GalaxySpiralMedium.png" id="43_olr1q"] +[ext_resource type="Texture2D" uid="uid://8mdpp3pi0j5n" path="res://UI/3-Structures/GalaxySpiralLarge.png" id="44_q42o5"] +[ext_resource type="Texture2D" uid="uid://wqd18leukb45" path="res://UI/3-Structures/GalaxySpiralGiant.png" id="45_b7btk"] +[ext_resource type="Texture2D" uid="uid://djamssxw7lmbh" path="res://UI/3-Structures/GalacticGroup.png" id="46_kkgr2"] +[ext_resource type="Texture2D" uid="uid://cfa0inm82ayyq" path="res://UI/3-Structures/GalacticSupercluster.png" id="47_iett8"] +[ext_resource type="Texture2D" uid="uid://ci7wls7wrbc8q" path="res://UI/3-Structures/GalacticFilament.png" id="48_r5m4j"] +[ext_resource type="Texture2D" uid="uid://ka50qcnqys5b" path="res://UI/3-Structures/GalacticWall.png" id="49_e77ka"] +[ext_resource type="Texture2D" uid="uid://n1vrqh43cpx5" path="res://UI/3-Structures/UniverseBubble.png" id="50_c0wax"] +[ext_resource type="Texture2D" uid="uid://1o6w7y0at2uu" path="res://UI/4-Planets/GasGiant.png" id="51_tje1l"] +[ext_resource type="Texture2D" uid="uid://bljv04pe6o6hq" path="res://UI/4-Planets/AsteroidBelt.png" id="52_0mimp"] +[ext_resource type="Texture2D" uid="uid://1r3qs7mciwp7" path="res://UI/4-Planets/RockyPlanet.png" id="53_57k0h"] +[ext_resource type="Texture2D" uid="uid://dqfv47u5txnwx" path="res://UI/4-Planets/HabitablePlanet.png" id="54_yykvs"] +[ext_resource type="Texture2D" uid="uid://dcva3oods3gjg" path="res://UI/4-Planets/LivingPlanet.png" id="55_aq2cj"] +[ext_resource type="Texture2D" uid="uid://bwy8x4k0ic5lc" path="res://UI/4-Planets/Civ0.png" id="56_4ll5h"] +[ext_resource type="Texture2D" uid="uid://bsnhgek4qgmai" path="res://UI/4-Planets/Civ1.png" id="57_t63o8"] +[ext_resource type="Texture2D" uid="uid://duudodawjg7t3" path="res://UI/4-Planets/Civ2.png" id="58_croyg"] +[ext_resource type="Texture2D" uid="uid://d3uw8eqai0iaq" path="res://UI/4-Planets/Civ3.png" id="59_w8bmm"] +[ext_resource type="Texture2D" uid="uid://b2ub2wh70cs0w" path="res://UI/4-Planets/Civ4.png" id="60_8gfof"] +[ext_resource type="Texture2D" uid="uid://t58co3tjdw0h" path="res://UI/4-Planets/Civ0/Civ0.0.png" id="61_bnxrb"] +[ext_resource type="Texture2D" uid="uid://b8yvewvcpiunv" path="res://UI/4-Planets/Civ0/Civ0.1.png" id="62_8arjy"] +[ext_resource type="Texture2D" uid="uid://dh05xijxrwphr" path="res://UI/4-Planets/Civ0/Civ0.2.png" id="63_inanf"] +[ext_resource type="Texture2D" uid="uid://b7qau3pb6eu46" path="res://UI/4-Planets/Civ0/Civ0.3.png" id="64_itvcc"] +[ext_resource type="Texture2D" uid="uid://oydt61ebhkqg" path="res://UI/4-Planets/Civ0/Civ0.4.png" id="65_kb3vm"] +[ext_resource type="Texture2D" uid="uid://bmgupkaabmavn" path="res://UI/4-Planets/Civ0/Civ0.5.png" id="66_qxwm4"] +[ext_resource type="Texture2D" uid="uid://dy1sso46qy4pe" path="res://UI/4-Planets/Civ0/Civ0.6.png" id="67_xslfe"] +[ext_resource type="Texture2D" uid="uid://c51dnjmdakosd" path="res://UI/4-Planets/Civ0/Civ0.7.png" id="68_j08qh"] +[ext_resource type="Texture2D" uid="uid://pjjkri35oxao" path="res://UI/4-Planets/Civ0/Civ0.8.png" id="69_bt6bu"] +[ext_resource type="Texture2D" uid="uid://dbvs1i2v1v1eh" path="res://UI/4-Planets/Civ0/Civ0.9.png" id="70_85csc"] +[ext_resource type="Texture2D" uid="uid://deopn7pknax5" path="res://UI/4-Planets/Civ1/Civ1.0.png" id="71_e6jkr"] +[ext_resource type="Texture2D" uid="uid://c55xkye0r8dm5" path="res://UI/4-Planets/Civ1/Civ1.1.png" id="72_2vwdk"] +[ext_resource type="Texture2D" uid="uid://cn7gdqbgeidw6" path="res://UI/4-Planets/Civ1/Civ1.2.png" id="73_8wjcy"] +[ext_resource type="Texture2D" uid="uid://bevkkjlo2mmk7" path="res://UI/4-Planets/Civ1/Civ1.3.png" id="74_xh3xj"] +[ext_resource type="Texture2D" uid="uid://bc3m4dtn85ms5" path="res://UI/4-Planets/Civ1/Civ1.4.png" id="75_ofgfh"] +[ext_resource type="Texture2D" uid="uid://dc6pwqn87qo01" path="res://UI/4-Planets/Civ1/Civ1.5.png" id="76_6d1iy"] +[ext_resource type="Texture2D" uid="uid://csngukrv6rau3" path="res://UI/4-Planets/Civ1/Civ1.6.png" id="77_awgtj"] +[ext_resource type="Texture2D" uid="uid://cnwbrlfh8anh2" path="res://UI/4-Planets/Civ1/Civ1.7.png" id="78_mou3f"] +[ext_resource type="Texture2D" uid="uid://dyonguxyf8msb" path="res://UI/4-Planets/Civ1/Civ1.8.png" id="79_8343f"] +[ext_resource type="Texture2D" uid="uid://by8eq22560m26" path="res://UI/4-Planets/Civ1/Civ1.9.png" id="80_2lhbq"] +[ext_resource type="Texture2D" uid="uid://3v7xuoxgel86" path="res://UI/4-Planets/Civ2/Civ2.0.png" id="81_5wt1p"] +[ext_resource type="Texture2D" uid="uid://vyhtuy8sopiw" path="res://UI/4-Planets/Civ2/Civ2.1.png" id="82_jtjv0"] +[ext_resource type="Texture2D" uid="uid://bci57e682feie" path="res://UI/4-Planets/Civ2/Civ2.2.png" id="83_wiowo"] +[ext_resource type="Texture2D" uid="uid://5wtfr74awfcj" path="res://UI/4-Planets/Civ2/Civ2.3.png" id="84_1f132"] +[ext_resource type="Texture2D" uid="uid://dbc170ck5sry7" path="res://UI/4-Planets/Civ2/Civ2.4.png" id="85_why7d"] +[ext_resource type="Texture2D" uid="uid://dhw55yhy1ri5y" path="res://UI/4-Planets/Civ2/Civ2.5.png" id="86_p12th"] +[ext_resource type="Texture2D" uid="uid://chbvsejg571jj" path="res://UI/4-Planets/Civ2/Civ2.6.png" id="87_ttq3l"] +[ext_resource type="Texture2D" uid="uid://dew2ghwqynpd5" path="res://UI/4-Planets/Civ2/Civ2.7.png" id="88_kkvrv"] +[ext_resource type="Texture2D" uid="uid://c578i0ftj2drl" path="res://UI/4-Planets/Civ2/Civ2.8.png" id="89_4f1xi"] +[ext_resource type="Texture2D" uid="uid://bec1g6hucq6ix" path="res://UI/4-Planets/Civ2/Civ2.9.png" id="90_ngogq"] +[ext_resource type="Texture2D" uid="uid://ddxmqarmqykcx" path="res://UI/4-Planets/Civ3/Civ3.0.png" id="91_r5ugs"] +[ext_resource type="Texture2D" uid="uid://cy7fvp16oocdr" path="res://UI/4-Planets/Civ3/Civ3.1.png" id="92_312do"] +[ext_resource type="Texture2D" uid="uid://ckbufvqmnr3in" path="res://UI/4-Planets/Civ3/Civ3.2.png" id="93_hfaud"] +[ext_resource type="Texture2D" uid="uid://b25cds64ris82" path="res://UI/4-Planets/Civ3/Civ3.3.png" id="94_8gw3t"] +[ext_resource type="Texture2D" uid="uid://d24475xrr4wyw" path="res://UI/4-Planets/Civ3/Civ3.4.png" id="95_iyplw"] +[ext_resource type="Texture2D" uid="uid://cn1u3ccercxii" path="res://UI/4-Planets/Civ3/Civ3.5.png" id="96_iad0i"] +[ext_resource type="Texture2D" uid="uid://xab5fi2fp6ke" path="res://UI/4-Planets/Civ3/Civ3.6.png" id="97_fl4at"] +[ext_resource type="Texture2D" uid="uid://6qfc8ywmq8nh" path="res://UI/4-Planets/Civ3/Civ3.7.png" id="98_76eeb"] +[ext_resource type="Texture2D" uid="uid://jrfssgt7ufsk" path="res://UI/4-Planets/Civ3/Civ3.8.png" id="99_d7cwp"] +[ext_resource type="Texture2D" uid="uid://ds0hn8no855vq" path="res://UI/4-Planets/Civ3/Civ3.9.png" id="100_svgmy"] +[ext_resource type="Texture2D" uid="uid://bv4yl74vk5vwt" path="res://UI/4-Planets/Civ4/Civ4.0.png" id="101_obhsp"] +[ext_resource type="Texture2D" uid="uid://c2juotb0djygs" path="res://UI/4-Planets/Civ4/Civ4.1.png" id="102_3p52x"] +[ext_resource type="Texture2D" uid="uid://64tv4l5b1sk8" path="res://UI/4-Planets/Civ4/Civ4.2.png" id="103_7fg3d"] +[ext_resource type="Texture2D" uid="uid://3ns6eyxixobo" path="res://UI/4-Planets/Civ4/Civ4.3.png" id="104_6irl1"] +[ext_resource type="Texture2D" uid="uid://t43qwb71e4mc" path="res://UI/4-Planets/Civ4/Civ4.4.png" id="105_ogahp"] +[ext_resource type="Texture2D" uid="uid://c3fvyk8vjop7d" path="res://UI/4-Planets/Civ4/Civ4.5.png" id="106_y3npd"] [node name="World" type="Node2D" unique_id=1392592456] @@ -38,7 +134,7 @@ script = ExtResource("1_fj7yv") STARRY_SKY_LAYER = ExtResource("3_aqk2v") -[node name="Stage" type="Control" parent="." unique_id=1485959841 node_paths=PackedStringArray("Pages")] +[node name="Stage" type="Control" parent="." unique_id=1485959841 node_paths=PackedStringArray("stage_pages", "stage_page_scroller")] custom_minimum_size = Vector2(1080, 1920) layout_mode = 3 anchors_preset = 0 @@ -47,7 +143,8 @@ offset_bottom = 40.0 size_flags_horizontal = 4 size_flags_vertical = 3 script = ExtResource("3_bh8nc") -Pages = [NodePath("StageRows/ScrollContainer/HBoxContainer/Forces"), NodePath("StageRows/ScrollContainer/HBoxContainer/Resources"), NodePath("StageRows/ScrollContainer/HBoxContainer/Stars"), NodePath("StageRows/ScrollContainer/HBoxContainer/Structures"), NodePath("StageRows/ScrollContainer/HBoxContainer/Planets")] +stage_pages = [NodePath("StageRows/PageScroller/HBoxContainer/ForcePage"), NodePath("StageRows/PageScroller/HBoxContainer/ResourcePage"), NodePath("StageRows/PageScroller/HBoxContainer/StarPage"), NodePath("StageRows/PageScroller/HBoxContainer/StructurePage"), NodePath("StageRows/PageScroller/HBoxContainer/LifePage")] +stage_page_scroller = NodePath("StageRows/PageScroller") [node name="StageRows" type="VBoxContainer" parent="Stage" unique_id=1878643860] layout_mode = 1 @@ -74,254 +171,1432 @@ TopMenuButtons = { [node name="TopMenuBorder" parent="Stage/StageRows" unique_id=476233375 instance=ExtResource("28_o3ebs")] layout_mode = 2 -[node name="RichTextLabel" type="RichTextLabel" parent="Stage/StageRows" unique_id=1250237695] -custom_minimum_size = Vector2(0, 736) -layout_mode = 2 -size_flags_vertical = 3 - -[node name="ScrollContainer" type="ScrollContainer" parent="Stage/StageRows" unique_id=1772137283] +[node name="PageScroller" type="ScrollContainer" parent="Stage/StageRows" unique_id=1772137283] custom_minimum_size = Vector2(0, 1040) layout_mode = 2 horizontal_scroll_mode = 3 vertical_scroll_mode = 0 -[node name="HBoxContainer" type="HBoxContainer" parent="Stage/StageRows/ScrollContainer" unique_id=398473867] +[node name="HBoxContainer" type="HBoxContainer" parent="Stage/StageRows/PageScroller" unique_id=398473867] layout_mode = 2 theme_override_constants/separation = 0 -[node name="Forces" type="GridContainer" parent="Stage/StageRows/ScrollContainer/HBoxContainer" unique_id=1268850523] -visible = false +[node name="ForcePage" type="VBoxContainer" parent="Stage/StageRows/PageScroller/HBoxContainer" unique_id=71643627] +layout_mode = 2 + +[node name="Description" type="RichTextLabel" parent="Stage/StageRows/PageScroller/HBoxContainer/ForcePage" unique_id=1934400572] +custom_minimum_size = Vector2(0, 736) +layout_mode = 2 +size_flags_vertical = 3 +theme_override_font_sizes/normal_font_size = 42 +text = "Forces" +fit_content = true + +[node name="Border" parent="Stage/StageRows/PageScroller/HBoxContainer/ForcePage" unique_id=519355296 instance=ExtResource("28_o3ebs")] +layout_mode = 2 + +[node name="Forces" type="GridContainer" parent="Stage/StageRows/PageScroller/HBoxContainer/ForcePage" unique_id=1730857021] custom_minimum_size = Vector2(1080, 1024) layout_mode = 2 theme_override_constants/h_separation = 0 theme_override_constants/v_separation = 0 columns = 5 -[node name="Resources" type="HBoxContainer" parent="Stage/StageRows/ScrollContainer/HBoxContainer" unique_id=1920833506] +[node name="Shovelin" parent="Stage/StageRows/PageScroller/HBoxContainer/ForcePage/Forces" unique_id=1590773441 instance=ExtResource("5_dwbse")] +layout_mode = 2 +theme_override_constants/separation = 0 + +[node name="TextureButton" parent="Stage/StageRows/PageScroller/HBoxContainer/ForcePage/Forces/Shovelin" index="0" unique_id=1377839155] +texture_normal = ExtResource("7_4ll5h") + +[node name="Inflatin" parent="Stage/StageRows/PageScroller/HBoxContainer/ForcePage/Forces" unique_id=1538731567 instance=ExtResource("5_dwbse")] +layout_mode = 2 +theme_override_constants/separation = 0 + +[node name="TextureButton" parent="Stage/StageRows/PageScroller/HBoxContainer/ForcePage/Forces/Inflatin" index="0" unique_id=1377839155] +texture_normal = ExtResource("8_t63o8") + +[node name="Temporite" parent="Stage/StageRows/PageScroller/HBoxContainer/ForcePage/Forces" unique_id=1882142809 instance=ExtResource("5_dwbse")] +layout_mode = 2 +theme_override_constants/separation = 0 + +[node name="TextureButton" parent="Stage/StageRows/PageScroller/HBoxContainer/ForcePage/Forces/Temporite" index="0" unique_id=1377839155] +texture_normal = ExtResource("9_croyg") + +[node name="Collisite" parent="Stage/StageRows/PageScroller/HBoxContainer/ForcePage/Forces" unique_id=1049145445 instance=ExtResource("5_dwbse")] +layout_mode = 2 +theme_override_constants/separation = 0 + +[node name="TextureButton" parent="Stage/StageRows/PageScroller/HBoxContainer/ForcePage/Forces/Collisite" index="0" unique_id=1377839155] +texture_normal = ExtResource("10_w8bmm") + +[node name="Primex" parent="Stage/StageRows/PageScroller/HBoxContainer/ForcePage/Forces" unique_id=1166871652 instance=ExtResource("5_dwbse")] +layout_mode = 2 +theme_override_constants/separation = 0 + +[node name="TextureButton" parent="Stage/StageRows/PageScroller/HBoxContainer/ForcePage/Forces/Primex" index="0" unique_id=1377839155] +texture_normal = ExtResource("11_8gfof") + +[node name="Singularite" parent="Stage/StageRows/PageScroller/HBoxContainer/ForcePage/Forces" unique_id=167854530 instance=ExtResource("5_dwbse")] +layout_mode = 2 +theme_override_constants/separation = 0 + +[node name="TextureButton" parent="Stage/StageRows/PageScroller/HBoxContainer/ForcePage/Forces/Singularite" index="0" unique_id=1377839155] +texture_normal = ExtResource("12_bnxrb") + +[node name="Renewin" parent="Stage/StageRows/PageScroller/HBoxContainer/ForcePage/Forces" unique_id=1723320543 instance=ExtResource("5_dwbse")] +layout_mode = 2 +theme_override_constants/separation = 0 + +[node name="TextureButton" parent="Stage/StageRows/PageScroller/HBoxContainer/ForcePage/Forces/Renewin" index="0" unique_id=1377839155] +texture_normal = ExtResource("13_8arjy") + +[node name="Infusite" parent="Stage/StageRows/PageScroller/HBoxContainer/ForcePage/Forces" unique_id=861187765 instance=ExtResource("5_dwbse")] +layout_mode = 2 +theme_override_constants/separation = 0 + +[node name="TextureButton" parent="Stage/StageRows/PageScroller/HBoxContainer/ForcePage/Forces/Infusite" index="0" unique_id=1377839155] +texture_normal = ExtResource("14_inanf") + +[node name="Frostin" parent="Stage/StageRows/PageScroller/HBoxContainer/ForcePage/Forces" unique_id=1107661248 instance=ExtResource("5_dwbse")] +layout_mode = 2 +theme_override_constants/separation = 0 + +[node name="TextureButton" parent="Stage/StageRows/PageScroller/HBoxContainer/ForcePage/Forces/Frostin" index="0" unique_id=1377839155] +texture_normal = ExtResource("15_itvcc") + +[node name="Destellarite" parent="Stage/StageRows/PageScroller/HBoxContainer/ForcePage/Forces" unique_id=1204871805 instance=ExtResource("5_dwbse")] +layout_mode = 2 +theme_override_constants/separation = 0 + +[node name="TextureButton" parent="Stage/StageRows/PageScroller/HBoxContainer/ForcePage/Forces/Destellarite" index="0" unique_id=1377839155] +texture_normal = ExtResource("16_kb3vm") + +[node name="Rockex" parent="Stage/StageRows/PageScroller/HBoxContainer/ForcePage/Forces" unique_id=350733653 instance=ExtResource("5_dwbse")] +layout_mode = 2 +theme_override_constants/separation = 0 + +[node name="TextureButton" parent="Stage/StageRows/PageScroller/HBoxContainer/ForcePage/Forces/Rockex" index="0" unique_id=1377839155] +texture_normal = ExtResource("17_e6jkr") + +[node name="Panspermin" parent="Stage/StageRows/PageScroller/HBoxContainer/ForcePage/Forces" unique_id=1785536244 instance=ExtResource("5_dwbse")] +layout_mode = 2 +theme_override_constants/separation = 0 + +[node name="TextureButton" parent="Stage/StageRows/PageScroller/HBoxContainer/ForcePage/Forces/Panspermin" index="0" unique_id=1377839155] +texture_normal = ExtResource("18_2vwdk") + +[node name="Gaianite" parent="Stage/StageRows/PageScroller/HBoxContainer/ForcePage/Forces" unique_id=1476879859 instance=ExtResource("5_dwbse")] +layout_mode = 2 +theme_override_constants/separation = 0 + +[node name="TextureButton" parent="Stage/StageRows/PageScroller/HBoxContainer/ForcePage/Forces/Gaianite" index="0" unique_id=1377839155] +texture_normal = ExtResource("19_8wjcy") + +[node name="Darwinite" parent="Stage/StageRows/PageScroller/HBoxContainer/ForcePage/Forces" unique_id=983648111 instance=ExtResource("5_dwbse")] +layout_mode = 2 +theme_override_constants/separation = 0 + +[node name="TextureButton" parent="Stage/StageRows/PageScroller/HBoxContainer/ForcePage/Forces/Darwinite" index="0" unique_id=1377839155] +texture_normal = ExtResource("20_xh3xj") + +[node name="Edenex" parent="Stage/StageRows/PageScroller/HBoxContainer/ForcePage/Forces" unique_id=1321230655 instance=ExtResource("5_dwbse")] +layout_mode = 2 +theme_override_constants/separation = 0 + +[node name="TextureButton" parent="Stage/StageRows/PageScroller/HBoxContainer/ForcePage/Forces/Edenex" index="0" unique_id=1377839155] +texture_normal = ExtResource("21_ofgfh") + +[node name="Pacifin" parent="Stage/StageRows/PageScroller/HBoxContainer/ForcePage/Forces" unique_id=1586357183 instance=ExtResource("5_dwbse")] +layout_mode = 2 +theme_override_constants/separation = 0 + +[node name="TextureButton" parent="Stage/StageRows/PageScroller/HBoxContainer/ForcePage/Forces/Pacifin" index="0" unique_id=1377839155] +texture_normal = ExtResource("22_6d1iy") + +[node name="Enragein" parent="Stage/StageRows/PageScroller/HBoxContainer/ForcePage/Forces" unique_id=1531932793 instance=ExtResource("5_dwbse")] +layout_mode = 2 +theme_override_constants/separation = 0 + +[node name="TextureButton" parent="Stage/StageRows/PageScroller/HBoxContainer/ForcePage/Forces/Enragein" index="0" unique_id=1377839155] +texture_normal = ExtResource("23_awgtj") + +[node name="Moralite" parent="Stage/StageRows/PageScroller/HBoxContainer/ForcePage/Forces" unique_id=173012442 instance=ExtResource("5_dwbse")] +layout_mode = 2 +theme_override_constants/separation = 0 + +[node name="TextureButton" parent="Stage/StageRows/PageScroller/HBoxContainer/ForcePage/Forces/Moralite" index="0" unique_id=1377839155] +texture_normal = ExtResource("24_mou3f") + +[node name="Discriminite" parent="Stage/StageRows/PageScroller/HBoxContainer/ForcePage/Forces" unique_id=1847022436 instance=ExtResource("5_dwbse")] +layout_mode = 2 +theme_override_constants/separation = 0 + +[node name="TextureButton" parent="Stage/StageRows/PageScroller/HBoxContainer/ForcePage/Forces/Discriminite" index="0" unique_id=1377839155] +texture_normal = ExtResource("25_8343f") + +[node name="Reprex" parent="Stage/StageRows/PageScroller/HBoxContainer/ForcePage/Forces" unique_id=626640600 instance=ExtResource("5_dwbse")] +layout_mode = 2 +theme_override_constants/separation = 0 + +[node name="TextureButton" parent="Stage/StageRows/PageScroller/HBoxContainer/ForcePage/Forces/Reprex" index="0" unique_id=1377839155] +texture_normal = ExtResource("26_2lhbq") + +[node name="ResourcePage" type="VBoxContainer" parent="Stage/StageRows/PageScroller/HBoxContainer" unique_id=1417647206] +layout_mode = 2 + +[node name="Description" type="RichTextLabel" parent="Stage/StageRows/PageScroller/HBoxContainer/ResourcePage" unique_id=1171833] +custom_minimum_size = Vector2(0, 736) +layout_mode = 2 +size_flags_vertical = 3 +theme_override_font_sizes/normal_font_size = 42 +text = "Resources" +fit_content = true + +[node name="Border" parent="Stage/StageRows/PageScroller/HBoxContainer/ResourcePage" unique_id=1268799323 instance=ExtResource("28_o3ebs")] +layout_mode = 2 + +[node name="HBoxContainer" type="HBoxContainer" parent="Stage/StageRows/PageScroller/HBoxContainer/ResourcePage" unique_id=206289176] custom_minimum_size = Vector2(1080, 1024) layout_mode = 2 -theme_override_constants/separation = 0 -[node name="VBoxContainer" type="VBoxContainer" parent="Stage/StageRows/ScrollContainer/HBoxContainer/Resources" unique_id=144576251] -layout_mode = 2 -theme_override_constants/separation = 0 - -[node name="Space" parent="Stage/StageRows/ScrollContainer/HBoxContainer/Resources/VBoxContainer" unique_id=1538731567 instance=ExtResource("5_dwbse")] +[node name="VBoxContainer" type="Control" parent="Stage/StageRows/PageScroller/HBoxContainer/ResourcePage/HBoxContainer" unique_id=1538364728] +custom_minimum_size = Vector2(256, 1024) layout_mode = 2 -[node name="TextureButton" parent="Stage/StageRows/ScrollContainer/HBoxContainer/Resources/VBoxContainer/Space" index="0" unique_id=1377839155] +[node name="Space" parent="Stage/StageRows/PageScroller/HBoxContainer/ResourcePage/HBoxContainer/VBoxContainer" unique_id=1331240101 instance=ExtResource("5_dwbse")] +layout_mode = 0 +offset_right = 216.0 +offset_bottom = 260.0 + +[node name="TextureButton" parent="Stage/StageRows/PageScroller/HBoxContainer/ResourcePage/HBoxContainer/VBoxContainer/Space" index="0" unique_id=1377839155] texture_normal = ExtResource("6_gbfbk") -[node name="Hydrogene" parent="Stage/StageRows/ScrollContainer/HBoxContainer/Resources/VBoxContainer" unique_id=1608891302 instance=ExtResource("5_dwbse")] -layout_mode = 2 +[node name="Hydrogene" parent="Stage/StageRows/PageScroller/HBoxContainer/ResourcePage/HBoxContainer/VBoxContainer" unique_id=1608891302 instance=ExtResource("5_dwbse")] +layout_mode = 0 +offset_top = 260.0 +offset_right = 216.0 +offset_bottom = 520.0 -[node name="TextureButton" parent="Stage/StageRows/ScrollContainer/HBoxContainer/Resources/VBoxContainer/Hydrogene" index="0" unique_id=1377839155] +[node name="TextureButton" parent="Stage/StageRows/PageScroller/HBoxContainer/ResourcePage/HBoxContainer/VBoxContainer/Hydrogene" index="0" unique_id=1377839155] texture_normal = ExtResource("7_wse8f") -[node name="Helium" parent="Stage/StageRows/ScrollContainer/HBoxContainer/Resources/VBoxContainer" unique_id=390491229 instance=ExtResource("5_dwbse")] -layout_mode = 2 +[node name="Helium" parent="Stage/StageRows/PageScroller/HBoxContainer/ResourcePage/HBoxContainer/VBoxContainer" unique_id=390491229 instance=ExtResource("5_dwbse")] +layout_mode = 0 +offset_top = 520.0 +offset_right = 216.0 +offset_bottom = 780.0 -[node name="TextureButton" parent="Stage/StageRows/ScrollContainer/HBoxContainer/Resources/VBoxContainer/Helium" index="0" unique_id=1377839155] +[node name="TextureButton" parent="Stage/StageRows/PageScroller/HBoxContainer/ResourcePage/HBoxContainer/VBoxContainer/Helium" index="0" unique_id=1377839155] texture_normal = ExtResource("8_ic0uy") -[node name="Metal" parent="Stage/StageRows/ScrollContainer/HBoxContainer/Resources/VBoxContainer" unique_id=719382862 instance=ExtResource("5_dwbse")] -layout_mode = 2 +[node name="Metal" parent="Stage/StageRows/PageScroller/HBoxContainer/ResourcePage/HBoxContainer/VBoxContainer" unique_id=719382862 instance=ExtResource("5_dwbse")] +layout_mode = 0 +offset_top = 780.0 +offset_right = 216.0 +offset_bottom = 1040.0 -[node name="TextureButton" parent="Stage/StageRows/ScrollContainer/HBoxContainer/Resources/VBoxContainer/Metal" index="0" unique_id=1377839155] +[node name="TextureButton" parent="Stage/StageRows/PageScroller/HBoxContainer/ResourcePage/HBoxContainer/VBoxContainer/Metal" index="0" unique_id=1377839155] texture_normal = ExtResource("9_k3n1d") -[node name="RichTextLabel" type="RichTextLabel" parent="Stage/StageRows/ScrollContainer/HBoxContainer/Resources" unique_id=420150583] +[node name="RichTextLabel" type="RichTextLabel" parent="Stage/StageRows/PageScroller/HBoxContainer/ResourcePage/HBoxContainer" unique_id=420150583] layout_mode = 2 size_flags_horizontal = 3 context_menu_enabled = true -[node name="Stars" type="GridContainer" parent="Stage/StageRows/ScrollContainer/HBoxContainer" unique_id=100687969] +[node name="StarPage" type="VBoxContainer" parent="Stage/StageRows/PageScroller/HBoxContainer" unique_id=270059674] +layout_mode = 2 + +[node name="Description" type="RichTextLabel" parent="Stage/StageRows/PageScroller/HBoxContainer/StarPage" unique_id=1195874488] +custom_minimum_size = Vector2(0, 736) +layout_mode = 2 +size_flags_vertical = 3 +theme_override_font_sizes/normal_font_size = 42 +text = "Stars" + +[node name="Border" parent="Stage/StageRows/PageScroller/HBoxContainer/StarPage" unique_id=358659431 instance=ExtResource("28_o3ebs")] +layout_mode = 2 + +[node name="Stars" type="Control" parent="Stage/StageRows/PageScroller/HBoxContainer/StarPage" unique_id=1969457639] custom_minimum_size = Vector2(1080, 1024) layout_mode = 2 -theme_override_constants/h_separation = 0 -theme_override_constants/v_separation = 0 -columns = 5 -[node name="Nebula" parent="Stage/StageRows/ScrollContainer/HBoxContainer/Stars" unique_id=1107661979 instance=ExtResource("5_dwbse")] -layout_mode = 2 +[node name="Nebula" parent="Stage/StageRows/PageScroller/HBoxContainer/StarPage/Stars" unique_id=1275650318 instance=ExtResource("5_dwbse")] +layout_mode = 0 +offset_right = 216.0 +offset_bottom = 256.0 theme_override_constants/separation = 0 -[node name="TextureButton" parent="Stage/StageRows/ScrollContainer/HBoxContainer/Stars/Nebula" index="0" unique_id=1377839155] +[node name="TextureButton" parent="Stage/StageRows/PageScroller/HBoxContainer/StarPage/Stars/Nebula" index="0" unique_id=1377839155] texture_normal = ExtResource("10_hiqwa") -[node name="Globula" parent="Stage/StageRows/ScrollContainer/HBoxContainer/Stars" unique_id=2041860139 instance=ExtResource("5_dwbse")] -layout_mode = 2 +[node name="Globula" parent="Stage/StageRows/PageScroller/HBoxContainer/StarPage/Stars" unique_id=342608460 instance=ExtResource("5_dwbse")] +layout_mode = 0 +offset_left = 216.0 +offset_right = 432.0 +offset_bottom = 256.0 theme_override_constants/separation = 0 -[node name="TextureButton" parent="Stage/StageRows/ScrollContainer/HBoxContainer/Stars/Globula" index="0" unique_id=1377839155] +[node name="TextureButton" parent="Stage/StageRows/PageScroller/HBoxContainer/StarPage/Stars/Globula" index="0" unique_id=1377839155] texture_normal = ExtResource("11_2u3nc") -[node name="StarNursery" parent="Stage/StageRows/ScrollContainer/HBoxContainer/Stars" unique_id=1383230687 instance=ExtResource("5_dwbse")] -layout_mode = 2 +[node name="StarNursery" parent="Stage/StageRows/PageScroller/HBoxContainer/StarPage/Stars" unique_id=1971344630 instance=ExtResource("5_dwbse")] +layout_mode = 0 +offset_left = 432.0 +offset_right = 648.0 +offset_bottom = 256.0 theme_override_constants/separation = 0 -[node name="TextureButton" parent="Stage/StageRows/ScrollContainer/HBoxContainer/Stars/StarNursery" index="0" unique_id=1377839155] +[node name="TextureButton" parent="Stage/StageRows/PageScroller/HBoxContainer/StarPage/Stars/StarNursery" index="0" unique_id=1377839155] texture_normal = ExtResource("12_udxuc") -[node name="MolecularCloud" parent="Stage/StageRows/ScrollContainer/HBoxContainer/Stars" unique_id=570205356 instance=ExtResource("5_dwbse")] -layout_mode = 2 +[node name="MolecularCloud" parent="Stage/StageRows/PageScroller/HBoxContainer/StarPage/Stars" unique_id=1055123181 instance=ExtResource("5_dwbse")] +layout_mode = 0 +offset_left = 648.0 +offset_right = 864.0 +offset_bottom = 256.0 theme_override_constants/separation = 0 -[node name="TextureButton" parent="Stage/StageRows/ScrollContainer/HBoxContainer/Stars/MolecularCloud" index="0" unique_id=1377839155] +[node name="TextureButton" parent="Stage/StageRows/PageScroller/HBoxContainer/StarPage/Stars/MolecularCloud" index="0" unique_id=1377839155] texture_normal = ExtResource("13_ikiii") -[node name="ActiveStarNursery" parent="Stage/StageRows/ScrollContainer/HBoxContainer/Stars" unique_id=497336423 instance=ExtResource("5_dwbse")] -layout_mode = 2 +[node name="ActiveStarNursery" parent="Stage/StageRows/PageScroller/HBoxContainer/StarPage/Stars" unique_id=20826371 instance=ExtResource("5_dwbse")] +layout_mode = 0 +offset_left = 864.0 +offset_right = 1080.0 +offset_bottom = 256.0 theme_override_constants/separation = 0 -[node name="TextureButton" parent="Stage/StageRows/ScrollContainer/HBoxContainer/Stars/ActiveStarNursery" index="0" unique_id=1377839155] +[node name="TextureButton" parent="Stage/StageRows/PageScroller/HBoxContainer/StarPage/Stars/ActiveStarNursery" index="0" unique_id=1377839155] texture_normal = ExtResource("14_cbp6q") -[node name="BrownDwarf" parent="Stage/StageRows/ScrollContainer/HBoxContainer/Stars" unique_id=2135757052 instance=ExtResource("5_dwbse")] -layout_mode = 2 +[node name="BrownDwarf" parent="Stage/StageRows/PageScroller/HBoxContainer/StarPage/Stars" unique_id=930496257 instance=ExtResource("5_dwbse")] +layout_mode = 0 +offset_top = 256.0 +offset_right = 216.0 +offset_bottom = 512.0 theme_override_constants/separation = 0 -[node name="TextureButton" parent="Stage/StageRows/ScrollContainer/HBoxContainer/Stars/BrownDwarf" index="0" unique_id=1377839155] +[node name="TextureButton" parent="Stage/StageRows/PageScroller/HBoxContainer/StarPage/Stars/BrownDwarf" index="0" unique_id=1377839155] texture_normal = ExtResource("15_26xuy") -[node name="RedDwarf" parent="Stage/StageRows/ScrollContainer/HBoxContainer/Stars" unique_id=1129874481 instance=ExtResource("5_dwbse")] -layout_mode = 2 +[node name="RedDwarf" parent="Stage/StageRows/PageScroller/HBoxContainer/StarPage/Stars" unique_id=2091373914 instance=ExtResource("5_dwbse")] +layout_mode = 0 +offset_left = 216.0 +offset_top = 256.0 +offset_right = 432.0 +offset_bottom = 512.0 theme_override_constants/separation = 0 -[node name="TextureButton" parent="Stage/StageRows/ScrollContainer/HBoxContainer/Stars/RedDwarf" index="0" unique_id=1377839155] +[node name="TextureButton" parent="Stage/StageRows/PageScroller/HBoxContainer/StarPage/Stars/RedDwarf" index="0" unique_id=1377839155] texture_normal = ExtResource("16_bc84e") -[node name="OrangeDwarf" parent="Stage/StageRows/ScrollContainer/HBoxContainer/Stars" unique_id=356487201 instance=ExtResource("5_dwbse")] -layout_mode = 2 +[node name="OrangeDwarf" parent="Stage/StageRows/PageScroller/HBoxContainer/StarPage/Stars" unique_id=648810096 instance=ExtResource("5_dwbse")] +layout_mode = 0 +offset_left = 432.0 +offset_top = 256.0 +offset_right = 648.0 +offset_bottom = 512.0 theme_override_constants/separation = 0 -[node name="TextureButton" parent="Stage/StageRows/ScrollContainer/HBoxContainer/Stars/OrangeDwarf" index="0" unique_id=1377839155] +[node name="TextureButton" parent="Stage/StageRows/PageScroller/HBoxContainer/StarPage/Stars/OrangeDwarf" index="0" unique_id=1377839155] texture_normal = ExtResource("17_wukud") -[node name="YellowDwarf" parent="Stage/StageRows/ScrollContainer/HBoxContainer/Stars" unique_id=1385019713 instance=ExtResource("5_dwbse")] -layout_mode = 2 +[node name="YellowDwarf" parent="Stage/StageRows/PageScroller/HBoxContainer/StarPage/Stars" unique_id=1031433094 instance=ExtResource("5_dwbse")] +layout_mode = 0 +offset_left = 648.0 +offset_top = 256.0 +offset_right = 864.0 +offset_bottom = 512.0 theme_override_constants/separation = 0 -[node name="TextureButton" parent="Stage/StageRows/ScrollContainer/HBoxContainer/Stars/YellowDwarf" index="0" unique_id=1377839155] +[node name="TextureButton" parent="Stage/StageRows/PageScroller/HBoxContainer/StarPage/Stars/YellowDwarf" index="0" unique_id=1377839155] texture_normal = ExtResource("18_il2jm") -[node name="WhiteYellowDwarf" parent="Stage/StageRows/ScrollContainer/HBoxContainer/Stars" unique_id=343339563 instance=ExtResource("5_dwbse")] -layout_mode = 2 +[node name="WhiteYellowDwarf" parent="Stage/StageRows/PageScroller/HBoxContainer/StarPage/Stars" unique_id=2096274249 instance=ExtResource("5_dwbse")] +layout_mode = 0 +offset_left = 864.0 +offset_top = 256.0 +offset_right = 1080.0 +offset_bottom = 512.0 theme_override_constants/separation = 0 -[node name="TextureButton" parent="Stage/StageRows/ScrollContainer/HBoxContainer/Stars/WhiteYellowDwarf" index="0" unique_id=1377839155] +[node name="TextureButton" parent="Stage/StageRows/PageScroller/HBoxContainer/StarPage/Stars/WhiteYellowDwarf" index="0" unique_id=1377839155] texture_normal = ExtResource("19_wjb0r") -[node name="RedGiant" parent="Stage/StageRows/ScrollContainer/HBoxContainer/Stars" unique_id=786630900 instance=ExtResource("5_dwbse")] -layout_mode = 2 +[node name="RedGiant" parent="Stage/StageRows/PageScroller/HBoxContainer/StarPage/Stars" unique_id=166043590 instance=ExtResource("5_dwbse")] +layout_mode = 0 +offset_top = 512.0 +offset_right = 216.0 +offset_bottom = 768.0 theme_override_constants/separation = 0 -[node name="TextureButton" parent="Stage/StageRows/ScrollContainer/HBoxContainer/Stars/RedGiant" index="0" unique_id=1377839155] +[node name="TextureButton" parent="Stage/StageRows/PageScroller/HBoxContainer/StarPage/Stars/RedGiant" index="0" unique_id=1377839155] texture_normal = ExtResource("20_qktwf") -[node name="YellowGiant" parent="Stage/StageRows/ScrollContainer/HBoxContainer/Stars" unique_id=210014725 instance=ExtResource("5_dwbse")] -layout_mode = 2 +[node name="WhiteStar" parent="Stage/StageRows/PageScroller/HBoxContainer/StarPage/Stars" unique_id=1966011803 instance=ExtResource("5_dwbse")] +layout_mode = 0 +offset_left = 216.0 +offset_top = 512.0 +offset_right = 432.0 +offset_bottom = 768.0 theme_override_constants/separation = 0 -[node name="TextureButton" parent="Stage/StageRows/ScrollContainer/HBoxContainer/Stars/YellowGiant" index="0" unique_id=1377839155] -texture_normal = ExtResource("21_bh8nc") +[node name="TextureButton" parent="Stage/StageRows/PageScroller/HBoxContainer/StarPage/Stars/WhiteStar" index="0" unique_id=1377839155] +texture_normal = ExtResource("42_e6jkr") -[node name="BlueGiant" parent="Stage/StageRows/ScrollContainer/HBoxContainer/Stars" unique_id=1788709679 instance=ExtResource("5_dwbse")] -layout_mode = 2 +[node name="BlueGiant" parent="Stage/StageRows/PageScroller/HBoxContainer/StarPage/Stars" unique_id=87527341 instance=ExtResource("5_dwbse")] +layout_mode = 0 +offset_left = 432.0 +offset_top = 512.0 +offset_right = 648.0 +offset_bottom = 768.0 theme_override_constants/separation = 0 -[node name="TextureButton" parent="Stage/StageRows/ScrollContainer/HBoxContainer/Stars/BlueGiant" index="0" unique_id=1377839155] +[node name="TextureButton" parent="Stage/StageRows/PageScroller/HBoxContainer/StarPage/Stars/BlueGiant" index="0" unique_id=1377839155] texture_normal = ExtResource("22_jjr1n") -[node name="SuperGiant" parent="Stage/StageRows/ScrollContainer/HBoxContainer/Stars" unique_id=1957077778 instance=ExtResource("5_dwbse")] -layout_mode = 2 +[node name="SuperGiant" parent="Stage/StageRows/PageScroller/HBoxContainer/StarPage/Stars" unique_id=951672272 instance=ExtResource("5_dwbse")] +layout_mode = 0 +offset_left = 648.0 +offset_top = 512.0 +offset_right = 864.0 +offset_bottom = 768.0 theme_override_constants/separation = 0 -[node name="TextureButton" parent="Stage/StageRows/ScrollContainer/HBoxContainer/Stars/SuperGiant" index="0" unique_id=1377839155] +[node name="TextureButton" parent="Stage/StageRows/PageScroller/HBoxContainer/StarPage/Stars/SuperGiant" index="0" unique_id=1377839155] texture_normal = ExtResource("23_gggvi") -[node name="HyperGiant" parent="Stage/StageRows/ScrollContainer/HBoxContainer/Stars" unique_id=989979808 instance=ExtResource("5_dwbse")] -layout_mode = 2 +[node name="WhiteDwarf" parent="Stage/StageRows/PageScroller/HBoxContainer/StarPage/Stars" unique_id=1937780540 instance=ExtResource("5_dwbse")] +layout_mode = 0 +offset_left = 864.0 +offset_top = 512.0 +offset_right = 1080.0 +offset_bottom = 768.0 theme_override_constants/separation = 0 -[node name="TextureButton" parent="Stage/StageRows/ScrollContainer/HBoxContainer/Stars/HyperGiant" index="0" unique_id=1377839155] -texture_normal = ExtResource("24_w44yn") - -[node name="WhiteDwarf" parent="Stage/StageRows/ScrollContainer/HBoxContainer/Stars" unique_id=749457804 instance=ExtResource("5_dwbse")] -layout_mode = 2 -theme_override_constants/separation = 0 - -[node name="TextureButton" parent="Stage/StageRows/ScrollContainer/HBoxContainer/Stars/WhiteDwarf" index="0" unique_id=1377839155] +[node name="TextureButton" parent="Stage/StageRows/PageScroller/HBoxContainer/StarPage/Stars/WhiteDwarf" index="0" unique_id=1377839155] texture_normal = ExtResource("25_6ah6f") -[node name="NeutronStar" parent="Stage/StageRows/ScrollContainer/HBoxContainer/Stars" unique_id=296960655 instance=ExtResource("5_dwbse")] -layout_mode = 2 +[node name="HyperGiant" parent="Stage/StageRows/PageScroller/HBoxContainer/StarPage/Stars" unique_id=1615957027 instance=ExtResource("5_dwbse")] +layout_mode = 0 +offset_top = 768.0 +offset_right = 216.0 +offset_bottom = 1024.0 theme_override_constants/separation = 0 -[node name="TextureButton" parent="Stage/StageRows/ScrollContainer/HBoxContainer/Stars/NeutronStar" index="0" unique_id=1377839155] +[node name="TextureButton" parent="Stage/StageRows/PageScroller/HBoxContainer/StarPage/Stars/HyperGiant" index="0" unique_id=1377839155] +texture_normal = ExtResource("24_w44yn") + +[node name="NeutronStar" parent="Stage/StageRows/PageScroller/HBoxContainer/StarPage/Stars" unique_id=134671256 instance=ExtResource("5_dwbse")] +layout_mode = 0 +offset_left = 216.0 +offset_top = 768.0 +offset_right = 432.0 +offset_bottom = 1024.0 +theme_override_constants/separation = 0 + +[node name="TextureButton" parent="Stage/StageRows/PageScroller/HBoxContainer/StarPage/Stars/NeutronStar" index="0" unique_id=1377839155] texture_normal = ExtResource("26_g1i3r") -[node name="Magnetar" parent="Stage/StageRows/ScrollContainer/HBoxContainer/Stars" unique_id=1527424918 instance=ExtResource("5_dwbse")] -layout_mode = 2 +[node name="Magnetar" parent="Stage/StageRows/PageScroller/HBoxContainer/StarPage/Stars" unique_id=1832072189 instance=ExtResource("5_dwbse")] +layout_mode = 0 +offset_left = 432.0 +offset_top = 768.0 +offset_right = 648.0 +offset_bottom = 1024.0 theme_override_constants/separation = 0 -[node name="TextureButton" parent="Stage/StageRows/ScrollContainer/HBoxContainer/Stars/Magnetar" index="0" unique_id=1377839155] +[node name="TextureButton" parent="Stage/StageRows/PageScroller/HBoxContainer/StarPage/Stars/Magnetar" index="0" unique_id=1377839155] texture_normal = ExtResource("27_my276") -[node name="BlackHole" parent="Stage/StageRows/ScrollContainer/HBoxContainer/Stars" unique_id=595940046 instance=ExtResource("5_dwbse")] -layout_mode = 2 +[node name="BlackHole" parent="Stage/StageRows/PageScroller/HBoxContainer/StarPage/Stars" unique_id=216436565 instance=ExtResource("5_dwbse")] +layout_mode = 0 +offset_left = 648.0 +offset_top = 768.0 +offset_right = 864.0 +offset_bottom = 1024.0 theme_override_constants/separation = 0 -[node name="TextureButton" parent="Stage/StageRows/ScrollContainer/HBoxContainer/Stars/BlackHole" index="0" unique_id=1377839155] +[node name="TextureButton" parent="Stage/StageRows/PageScroller/HBoxContainer/StarPage/Stars/BlackHole" index="0" unique_id=1377839155] texture_normal = ExtResource("28_yx0jh") -[node name="SupermassiveBlackHole" parent="Stage/StageRows/ScrollContainer/HBoxContainer/Stars" unique_id=1314128880 instance=ExtResource("5_dwbse")] -layout_mode = 2 +[node name="SupermassiveBlackHole" parent="Stage/StageRows/PageScroller/HBoxContainer/StarPage/Stars" unique_id=1355858773 instance=ExtResource("5_dwbse")] +layout_mode = 0 +offset_left = 864.0 +offset_top = 768.0 +offset_right = 1080.0 +offset_bottom = 1024.0 theme_override_constants/separation = 0 -[node name="TextureButton" parent="Stage/StageRows/ScrollContainer/HBoxContainer/Stars/SupermassiveBlackHole" index="0" unique_id=1377839155] +[node name="TextureButton" parent="Stage/StageRows/PageScroller/HBoxContainer/StarPage/Stars/SupermassiveBlackHole" index="0" unique_id=1377839155] texture_normal = ExtResource("29_1ew0l") -[node name="Structures" type="GridContainer" parent="Stage/StageRows/ScrollContainer/HBoxContainer" unique_id=826450075] -custom_minimum_size = Vector2(1080, 1024) +[node name="StructurePage" type="VBoxContainer" parent="Stage/StageRows/PageScroller/HBoxContainer" unique_id=435979853] layout_mode = 2 -theme_override_constants/h_separation = 0 -theme_override_constants/v_separation = 0 -columns = 5 -[node name="Planets" type="GridContainer" parent="Stage/StageRows/ScrollContainer/HBoxContainer" unique_id=1181087033] +[node name="Description" type="RichTextLabel" parent="Stage/StageRows/PageScroller/HBoxContainer/StructurePage" unique_id=414749774] +custom_minimum_size = Vector2(0, 736) +layout_mode = 2 +size_flags_vertical = 3 +theme_override_font_sizes/normal_font_size = 42 +text = "Structures" + +[node name="Border" parent="Stage/StageRows/PageScroller/HBoxContainer/StructurePage" unique_id=342730054 instance=ExtResource("28_o3ebs")] +layout_mode = 2 + +[node name="Structures" type="Control" parent="Stage/StageRows/PageScroller/HBoxContainer/StructurePage" unique_id=1126505300] custom_minimum_size = Vector2(1080, 1024) layout_mode = 2 -theme_override_constants/h_separation = 0 -theme_override_constants/v_separation = 0 -columns = 5 + +[node name="StarClusterScattered" parent="Stage/StageRows/PageScroller/HBoxContainer/StructurePage/Structures" unique_id=492230274 instance=ExtResource("5_dwbse")] +layout_mode = 0 +offset_right = 216.0 +offset_bottom = 256.0 +theme_override_constants/separation = 0 + +[node name="TextureButton" parent="Stage/StageRows/PageScroller/HBoxContainer/StructurePage/Structures/StarClusterScattered" index="0" unique_id=1377839155] +texture_normal = ExtResource("31_ytpkv") + +[node name="StarClusterSmall" parent="Stage/StageRows/PageScroller/HBoxContainer/StructurePage/Structures" unique_id=1517185178 instance=ExtResource("5_dwbse")] +layout_mode = 0 +offset_left = 216.0 +offset_right = 432.0 +offset_bottom = 256.0 +theme_override_constants/separation = 0 + +[node name="TextureButton" parent="Stage/StageRows/PageScroller/HBoxContainer/StructurePage/Structures/StarClusterSmall" index="0" unique_id=1377839155] +texture_normal = ExtResource("32_jas3d") + +[node name="StarClusterMedium" parent="Stage/StageRows/PageScroller/HBoxContainer/StructurePage/Structures" unique_id=337145121 instance=ExtResource("5_dwbse")] +layout_mode = 0 +offset_left = 432.0 +offset_right = 648.0 +offset_bottom = 256.0 +theme_override_constants/separation = 0 + +[node name="TextureButton" parent="Stage/StageRows/PageScroller/HBoxContainer/StructurePage/Structures/StarClusterMedium" index="0" unique_id=1377839155] +texture_normal = ExtResource("33_7htu6") + +[node name="StarClusterLarge" parent="Stage/StageRows/PageScroller/HBoxContainer/StructurePage/Structures" unique_id=1228264691 instance=ExtResource("5_dwbse")] +layout_mode = 0 +offset_left = 648.0 +offset_right = 864.0 +offset_bottom = 256.0 +theme_override_constants/separation = 0 + +[node name="TextureButton" parent="Stage/StageRows/PageScroller/HBoxContainer/StructurePage/Structures/StarClusterLarge" index="0" unique_id=1377839155] +texture_normal = ExtResource("34_7qk3m") + +[node name="StarClusterGiant" parent="Stage/StageRows/PageScroller/HBoxContainer/StructurePage/Structures" unique_id=1664418992 instance=ExtResource("5_dwbse")] +layout_mode = 0 +offset_left = 864.0 +offset_right = 1080.0 +offset_bottom = 256.0 +theme_override_constants/separation = 0 + +[node name="TextureButton" parent="Stage/StageRows/PageScroller/HBoxContainer/StructurePage/Structures/StarClusterGiant" index="0" unique_id=1377839155] +texture_normal = ExtResource("35_xpnt2") + +[node name="GalaxyEllipticalDwarf" parent="Stage/StageRows/PageScroller/HBoxContainer/StructurePage/Structures" unique_id=2116931063 instance=ExtResource("5_dwbse")] +layout_mode = 0 +offset_top = 256.0 +offset_right = 216.0 +offset_bottom = 512.0 +theme_override_constants/separation = 0 + +[node name="TextureButton" parent="Stage/StageRows/PageScroller/HBoxContainer/StructurePage/Structures/GalaxyEllipticalDwarf" index="0" unique_id=1377839155] +texture_normal = ExtResource("36_ruyqm") + +[node name="GalaxyEllipticalSmall" parent="Stage/StageRows/PageScroller/HBoxContainer/StructurePage/Structures" unique_id=817098715 instance=ExtResource("5_dwbse")] +layout_mode = 0 +offset_left = 216.0 +offset_top = 256.0 +offset_right = 432.0 +offset_bottom = 512.0 +theme_override_constants/separation = 0 + +[node name="TextureButton" parent="Stage/StageRows/PageScroller/HBoxContainer/StructurePage/Structures/GalaxyEllipticalSmall" index="0" unique_id=1377839155] +texture_normal = ExtResource("37_fnoqa") + +[node name="GalaxyEllipticalMedium" parent="Stage/StageRows/PageScroller/HBoxContainer/StructurePage/Structures" unique_id=1725007529 instance=ExtResource("5_dwbse")] +layout_mode = 0 +offset_left = 432.0 +offset_top = 256.0 +offset_right = 648.0 +offset_bottom = 512.0 +theme_override_constants/separation = 0 + +[node name="TextureButton" parent="Stage/StageRows/PageScroller/HBoxContainer/StructurePage/Structures/GalaxyEllipticalMedium" index="0" unique_id=1377839155] +texture_normal = ExtResource("38_nx736") + +[node name="GalaxyEllipticalLarge" parent="Stage/StageRows/PageScroller/HBoxContainer/StructurePage/Structures" unique_id=273115301 instance=ExtResource("5_dwbse")] +layout_mode = 0 +offset_left = 648.0 +offset_top = 256.0 +offset_right = 864.0 +offset_bottom = 512.0 +theme_override_constants/separation = 0 + +[node name="TextureButton" parent="Stage/StageRows/PageScroller/HBoxContainer/StructurePage/Structures/GalaxyEllipticalLarge" index="0" unique_id=1377839155] +texture_normal = ExtResource("39_55kwu") + +[node name="GalaxyEllipticalGiant" parent="Stage/StageRows/PageScroller/HBoxContainer/StructurePage/Structures" unique_id=1178604667 instance=ExtResource("5_dwbse")] +layout_mode = 0 +offset_left = 864.0 +offset_top = 256.0 +offset_right = 1080.0 +offset_bottom = 512.0 +theme_override_constants/separation = 0 + +[node name="TextureButton" parent="Stage/StageRows/PageScroller/HBoxContainer/StructurePage/Structures/GalaxyEllipticalGiant" index="0" unique_id=1377839155] +texture_normal = ExtResource("40_f3o6s") + +[node name="GalaxySpiralDwarf" parent="Stage/StageRows/PageScroller/HBoxContainer/StructurePage/Structures" unique_id=1852389162 instance=ExtResource("5_dwbse")] +layout_mode = 0 +offset_top = 512.0 +offset_right = 216.0 +offset_bottom = 768.0 +theme_override_constants/separation = 0 + +[node name="TextureButton" parent="Stage/StageRows/PageScroller/HBoxContainer/StructurePage/Structures/GalaxySpiralDwarf" index="0" unique_id=1377839155] +texture_normal = ExtResource("41_w4lh7") + +[node name="GalaxySpiralSmall" parent="Stage/StageRows/PageScroller/HBoxContainer/StructurePage/Structures" unique_id=463359042 instance=ExtResource("5_dwbse")] +layout_mode = 0 +offset_left = 216.0 +offset_top = 512.0 +offset_right = 432.0 +offset_bottom = 768.0 +theme_override_constants/separation = 0 + +[node name="TextureButton" parent="Stage/StageRows/PageScroller/HBoxContainer/StructurePage/Structures/GalaxySpiralSmall" index="0" unique_id=1377839155] +texture_normal = ExtResource("42_k3lar") + +[node name="GalaxySpiralMedium" parent="Stage/StageRows/PageScroller/HBoxContainer/StructurePage/Structures" unique_id=10791419 instance=ExtResource("5_dwbse")] +layout_mode = 0 +offset_left = 432.0 +offset_top = 512.0 +offset_right = 648.0 +offset_bottom = 768.0 +theme_override_constants/separation = 0 + +[node name="TextureButton" parent="Stage/StageRows/PageScroller/HBoxContainer/StructurePage/Structures/GalaxySpiralMedium" index="0" unique_id=1377839155] +texture_normal = ExtResource("43_olr1q") + +[node name="GalaxySpiralLarge" parent="Stage/StageRows/PageScroller/HBoxContainer/StructurePage/Structures" unique_id=1123548 instance=ExtResource("5_dwbse")] +layout_mode = 0 +offset_left = 648.0 +offset_top = 512.0 +offset_right = 864.0 +offset_bottom = 768.0 +theme_override_constants/separation = 0 + +[node name="TextureButton" parent="Stage/StageRows/PageScroller/HBoxContainer/StructurePage/Structures/GalaxySpiralLarge" index="0" unique_id=1377839155] +texture_normal = ExtResource("44_q42o5") + +[node name="GalaxySpiralGiant" parent="Stage/StageRows/PageScroller/HBoxContainer/StructurePage/Structures" unique_id=1003285563 instance=ExtResource("5_dwbse")] +layout_mode = 0 +offset_left = 864.0 +offset_top = 512.0 +offset_right = 1080.0 +offset_bottom = 768.0 +theme_override_constants/separation = 0 + +[node name="TextureButton" parent="Stage/StageRows/PageScroller/HBoxContainer/StructurePage/Structures/GalaxySpiralGiant" index="0" unique_id=1377839155] +texture_normal = ExtResource("45_b7btk") + +[node name="GalacticGroup" parent="Stage/StageRows/PageScroller/HBoxContainer/StructurePage/Structures" unique_id=1469265404 instance=ExtResource("5_dwbse")] +layout_mode = 0 +offset_top = 768.0 +offset_right = 216.0 +offset_bottom = 1024.0 +theme_override_constants/separation = 0 + +[node name="TextureButton" parent="Stage/StageRows/PageScroller/HBoxContainer/StructurePage/Structures/GalacticGroup" index="0" unique_id=1377839155] +texture_normal = ExtResource("46_kkgr2") + +[node name="GalacticSupercluster" parent="Stage/StageRows/PageScroller/HBoxContainer/StructurePage/Structures" unique_id=825925214 instance=ExtResource("5_dwbse")] +layout_mode = 0 +offset_left = 216.0 +offset_top = 768.0 +offset_right = 432.0 +offset_bottom = 1024.0 +theme_override_constants/separation = 0 + +[node name="TextureButton" parent="Stage/StageRows/PageScroller/HBoxContainer/StructurePage/Structures/GalacticSupercluster" index="0" unique_id=1377839155] +texture_normal = ExtResource("47_iett8") + +[node name="GalacticFilament" parent="Stage/StageRows/PageScroller/HBoxContainer/StructurePage/Structures" unique_id=749624487 instance=ExtResource("5_dwbse")] +layout_mode = 0 +offset_left = 432.0 +offset_top = 768.0 +offset_right = 648.0 +offset_bottom = 1024.0 +theme_override_constants/separation = 0 + +[node name="TextureButton" parent="Stage/StageRows/PageScroller/HBoxContainer/StructurePage/Structures/GalacticFilament" index="0" unique_id=1377839155] +texture_normal = ExtResource("48_r5m4j") + +[node name="GalacticWall" parent="Stage/StageRows/PageScroller/HBoxContainer/StructurePage/Structures" unique_id=1990234056 instance=ExtResource("5_dwbse")] +layout_mode = 0 +offset_left = 648.0 +offset_top = 768.0 +offset_right = 864.0 +offset_bottom = 1024.0 +theme_override_constants/separation = 0 + +[node name="TextureButton" parent="Stage/StageRows/PageScroller/HBoxContainer/StructurePage/Structures/GalacticWall" index="0" unique_id=1377839155] +texture_normal = ExtResource("49_e77ka") + +[node name="UniverseBubble" parent="Stage/StageRows/PageScroller/HBoxContainer/StructurePage/Structures" unique_id=226372462 instance=ExtResource("5_dwbse")] +layout_mode = 0 +offset_left = 864.0 +offset_top = 768.0 +offset_right = 1080.0 +offset_bottom = 1024.0 +theme_override_constants/separation = 0 + +[node name="TextureButton" parent="Stage/StageRows/PageScroller/HBoxContainer/StructurePage/Structures/UniverseBubble" index="0" unique_id=1377839155] +texture_normal = ExtResource("50_c0wax") + +[node name="LifePage" type="VBoxContainer" parent="Stage/StageRows/PageScroller/HBoxContainer" unique_id=1519563846] +layout_mode = 2 + +[node name="Description" type="RichTextLabel" parent="Stage/StageRows/PageScroller/HBoxContainer/LifePage" unique_id=454792539] +custom_minimum_size = Vector2(0, 736) +layout_mode = 2 +size_flags_vertical = 3 +theme_override_font_sizes/normal_font_size = 42 +text = "Planets" + +[node name="Border" parent="Stage/StageRows/PageScroller/HBoxContainer/LifePage" unique_id=335602062 instance=ExtResource("28_o3ebs")] +layout_mode = 2 + +[node name="Planets" type="Control" parent="Stage/StageRows/PageScroller/HBoxContainer/LifePage" unique_id=2090564849] +custom_minimum_size = Vector2(1080, 512) +layout_mode = 2 + +[node name="GasGiant" parent="Stage/StageRows/PageScroller/HBoxContainer/LifePage/Planets" unique_id=1527063134 instance=ExtResource("5_dwbse")] +layout_mode = 0 +offset_right = 216.0 +offset_bottom = 256.0 +theme_override_constants/separation = 0 + +[node name="TextureButton" parent="Stage/StageRows/PageScroller/HBoxContainer/LifePage/Planets/GasGiant" index="0" unique_id=1377839155] +texture_normal = ExtResource("51_tje1l") + +[node name="AsteroidBelt" parent="Stage/StageRows/PageScroller/HBoxContainer/LifePage/Planets" unique_id=754997869 instance=ExtResource("5_dwbse")] +layout_mode = 0 +offset_left = 220.0 +offset_right = 436.0 +offset_bottom = 256.0 +theme_override_constants/separation = 0 + +[node name="TextureButton" parent="Stage/StageRows/PageScroller/HBoxContainer/LifePage/Planets/AsteroidBelt" index="0" unique_id=1377839155] +texture_normal = ExtResource("52_0mimp") + +[node name="RockyPlanet" parent="Stage/StageRows/PageScroller/HBoxContainer/LifePage/Planets" unique_id=1405246051 instance=ExtResource("5_dwbse")] +layout_mode = 0 +offset_left = 440.0 +offset_right = 656.0 +offset_bottom = 256.0 +theme_override_constants/separation = 0 + +[node name="TextureButton" parent="Stage/StageRows/PageScroller/HBoxContainer/LifePage/Planets/RockyPlanet" index="0" unique_id=1377839155] +texture_normal = ExtResource("53_57k0h") + +[node name="HabitablePlanet" parent="Stage/StageRows/PageScroller/HBoxContainer/LifePage/Planets" unique_id=451472226 instance=ExtResource("5_dwbse")] +layout_mode = 0 +offset_left = 660.0 +offset_right = 876.0 +offset_bottom = 256.0 +theme_override_constants/separation = 0 + +[node name="TextureButton" parent="Stage/StageRows/PageScroller/HBoxContainer/LifePage/Planets/HabitablePlanet" index="0" unique_id=1377839155] +texture_normal = ExtResource("54_yykvs") + +[node name="LivingPlanet" parent="Stage/StageRows/PageScroller/HBoxContainer/LifePage/Planets" unique_id=43895283 instance=ExtResource("5_dwbse")] +layout_mode = 0 +offset_left = 880.0 +offset_right = 1096.0 +offset_bottom = 256.0 +theme_override_constants/separation = 0 + +[node name="TextureButton" parent="Stage/StageRows/PageScroller/HBoxContainer/LifePage/Planets/LivingPlanet" index="0" unique_id=1377839155] +texture_normal = ExtResource("55_aq2cj") + +[node name="Civ0" parent="Stage/StageRows/PageScroller/HBoxContainer/LifePage/Planets" unique_id=953538573 instance=ExtResource("5_dwbse")] +layout_mode = 0 +offset_top = 260.0 +offset_right = 216.0 +offset_bottom = 516.0 +theme_override_constants/separation = 0 + +[node name="TextureButton" parent="Stage/StageRows/PageScroller/HBoxContainer/LifePage/Planets/Civ0" index="0" unique_id=1377839155] +texture_normal = ExtResource("56_4ll5h") + +[node name="Civ1" parent="Stage/StageRows/PageScroller/HBoxContainer/LifePage/Planets" unique_id=1848251690 instance=ExtResource("5_dwbse")] +layout_mode = 0 +offset_left = 220.0 +offset_top = 260.0 +offset_right = 436.0 +offset_bottom = 516.0 +theme_override_constants/separation = 0 + +[node name="TextureButton" parent="Stage/StageRows/PageScroller/HBoxContainer/LifePage/Planets/Civ1" index="0" unique_id=1377839155] +texture_normal = ExtResource("57_t63o8") + +[node name="Civ2" parent="Stage/StageRows/PageScroller/HBoxContainer/LifePage/Planets" unique_id=972418480 instance=ExtResource("5_dwbse")] +layout_mode = 0 +offset_left = 440.0 +offset_top = 260.0 +offset_right = 656.0 +offset_bottom = 516.0 +theme_override_constants/separation = 0 + +[node name="TextureButton" parent="Stage/StageRows/PageScroller/HBoxContainer/LifePage/Planets/Civ2" index="0" unique_id=1377839155] +texture_normal = ExtResource("58_croyg") + +[node name="Civ3" parent="Stage/StageRows/PageScroller/HBoxContainer/LifePage/Planets" unique_id=211437932 instance=ExtResource("5_dwbse")] +layout_mode = 0 +offset_left = 660.0 +offset_top = 260.0 +offset_right = 876.0 +offset_bottom = 516.0 +theme_override_constants/separation = 0 + +[node name="TextureButton" parent="Stage/StageRows/PageScroller/HBoxContainer/LifePage/Planets/Civ3" index="0" unique_id=1377839155] +texture_normal = ExtResource("59_w8bmm") + +[node name="Civ4" parent="Stage/StageRows/PageScroller/HBoxContainer/LifePage/Planets" unique_id=1421931483 instance=ExtResource("5_dwbse")] +layout_mode = 0 +offset_left = 880.0 +offset_top = 260.0 +offset_right = 1096.0 +offset_bottom = 516.0 +theme_override_constants/separation = 0 + +[node name="TextureButton" parent="Stage/StageRows/PageScroller/HBoxContainer/LifePage/Planets/Civ4" index="0" unique_id=1377839155] +texture_normal = ExtResource("60_8gfof") + +[node name="Civ0" type="Control" parent="Stage/StageRows/PageScroller/HBoxContainer/LifePage" unique_id=7201092] +custom_minimum_size = Vector2(1080, 512) +layout_mode = 2 + +[node name="Civ0-0" parent="Stage/StageRows/PageScroller/HBoxContainer/LifePage/Civ0" unique_id=420142709 instance=ExtResource("5_dwbse")] +layout_mode = 0 +offset_right = 216.0 +offset_bottom = 256.0 +theme_override_constants/separation = 0 + +[node name="TextureButton" parent="Stage/StageRows/PageScroller/HBoxContainer/LifePage/Civ0/Civ0-0" index="0" unique_id=1377839155] +texture_normal = ExtResource("61_bnxrb") + +[node name="Civ0-1" parent="Stage/StageRows/PageScroller/HBoxContainer/LifePage/Civ0" unique_id=626169565 instance=ExtResource("5_dwbse")] +layout_mode = 0 +offset_left = 220.0 +offset_right = 436.0 +offset_bottom = 256.0 +theme_override_constants/separation = 0 + +[node name="TextureButton" parent="Stage/StageRows/PageScroller/HBoxContainer/LifePage/Civ0/Civ0-1" index="0" unique_id=1377839155] +texture_normal = ExtResource("62_8arjy") + +[node name="Civ0-2" parent="Stage/StageRows/PageScroller/HBoxContainer/LifePage/Civ0" unique_id=1811805959 instance=ExtResource("5_dwbse")] +layout_mode = 0 +offset_left = 440.0 +offset_right = 656.0 +offset_bottom = 256.0 +theme_override_constants/separation = 0 + +[node name="TextureButton" parent="Stage/StageRows/PageScroller/HBoxContainer/LifePage/Civ0/Civ0-2" index="0" unique_id=1377839155] +texture_normal = ExtResource("63_inanf") + +[node name="Civ0-3" parent="Stage/StageRows/PageScroller/HBoxContainer/LifePage/Civ0" unique_id=651916192 instance=ExtResource("5_dwbse")] +layout_mode = 0 +offset_left = 660.0 +offset_right = 876.0 +offset_bottom = 256.0 +theme_override_constants/separation = 0 + +[node name="TextureButton" parent="Stage/StageRows/PageScroller/HBoxContainer/LifePage/Civ0/Civ0-3" index="0" unique_id=1377839155] +texture_normal = ExtResource("64_itvcc") + +[node name="Civ0-4" parent="Stage/StageRows/PageScroller/HBoxContainer/LifePage/Civ0" unique_id=1562868383 instance=ExtResource("5_dwbse")] +layout_mode = 0 +offset_left = 880.0 +offset_right = 1096.0 +offset_bottom = 256.0 +theme_override_constants/separation = 0 + +[node name="TextureButton" parent="Stage/StageRows/PageScroller/HBoxContainer/LifePage/Civ0/Civ0-4" index="0" unique_id=1377839155] +texture_normal = ExtResource("65_kb3vm") + +[node name="Civ0-5" parent="Stage/StageRows/PageScroller/HBoxContainer/LifePage/Civ0" unique_id=482153976 instance=ExtResource("5_dwbse")] +layout_mode = 0 +offset_top = 260.0 +offset_right = 216.0 +offset_bottom = 516.0 +theme_override_constants/separation = 0 + +[node name="TextureButton" parent="Stage/StageRows/PageScroller/HBoxContainer/LifePage/Civ0/Civ0-5" index="0" unique_id=1377839155] +texture_normal = ExtResource("66_qxwm4") + +[node name="Civ0-6" parent="Stage/StageRows/PageScroller/HBoxContainer/LifePage/Civ0" unique_id=1081448411 instance=ExtResource("5_dwbse")] +layout_mode = 0 +offset_left = 220.0 +offset_top = 260.0 +offset_right = 436.0 +offset_bottom = 516.0 +theme_override_constants/separation = 0 + +[node name="TextureButton" parent="Stage/StageRows/PageScroller/HBoxContainer/LifePage/Civ0/Civ0-6" index="0" unique_id=1377839155] +texture_normal = ExtResource("67_xslfe") + +[node name="Civ0-7" parent="Stage/StageRows/PageScroller/HBoxContainer/LifePage/Civ0" unique_id=753601967 instance=ExtResource("5_dwbse")] +layout_mode = 0 +offset_left = 440.0 +offset_top = 260.0 +offset_right = 656.0 +offset_bottom = 516.0 +theme_override_constants/separation = 0 + +[node name="TextureButton" parent="Stage/StageRows/PageScroller/HBoxContainer/LifePage/Civ0/Civ0-7" index="0" unique_id=1377839155] +texture_normal = ExtResource("68_j08qh") + +[node name="Civ0-8" parent="Stage/StageRows/PageScroller/HBoxContainer/LifePage/Civ0" unique_id=570511607 instance=ExtResource("5_dwbse")] +layout_mode = 0 +offset_left = 660.0 +offset_top = 260.0 +offset_right = 876.0 +offset_bottom = 516.0 +theme_override_constants/separation = 0 + +[node name="TextureButton" parent="Stage/StageRows/PageScroller/HBoxContainer/LifePage/Civ0/Civ0-8" index="0" unique_id=1377839155] +texture_normal = ExtResource("69_bt6bu") + +[node name="Civ0-9" parent="Stage/StageRows/PageScroller/HBoxContainer/LifePage/Civ0" unique_id=1390137047 instance=ExtResource("5_dwbse")] +layout_mode = 0 +offset_left = 880.0 +offset_top = 260.0 +offset_right = 1096.0 +offset_bottom = 516.0 +theme_override_constants/separation = 0 + +[node name="TextureButton" parent="Stage/StageRows/PageScroller/HBoxContainer/LifePage/Civ0/Civ0-9" index="0" unique_id=1377839155] +texture_normal = ExtResource("70_85csc") + +[node name="Civ1" type="Control" parent="Stage/StageRows/PageScroller/HBoxContainer/LifePage" unique_id=986637561] +visible = false +custom_minimum_size = Vector2(1080, 512) +layout_mode = 2 + +[node name="Civ1-0" parent="Stage/StageRows/PageScroller/HBoxContainer/LifePage/Civ1" unique_id=1595278272 instance=ExtResource("5_dwbse")] +layout_mode = 0 +offset_right = 216.0 +offset_bottom = 256.0 +theme_override_constants/separation = 0 + +[node name="TextureButton" parent="Stage/StageRows/PageScroller/HBoxContainer/LifePage/Civ1/Civ1-0" index="0" unique_id=1377839155] +texture_normal = ExtResource("71_e6jkr") + +[node name="Civ1-1" parent="Stage/StageRows/PageScroller/HBoxContainer/LifePage/Civ1" unique_id=1472134926 instance=ExtResource("5_dwbse")] +layout_mode = 0 +offset_left = 220.0 +offset_right = 436.0 +offset_bottom = 256.0 +theme_override_constants/separation = 0 + +[node name="TextureButton" parent="Stage/StageRows/PageScroller/HBoxContainer/LifePage/Civ1/Civ1-1" index="0" unique_id=1377839155] +texture_normal = ExtResource("72_2vwdk") + +[node name="Civ1-2" parent="Stage/StageRows/PageScroller/HBoxContainer/LifePage/Civ1" unique_id=1681529079 instance=ExtResource("5_dwbse")] +layout_mode = 0 +offset_left = 440.0 +offset_right = 656.0 +offset_bottom = 256.0 +theme_override_constants/separation = 0 + +[node name="TextureButton" parent="Stage/StageRows/PageScroller/HBoxContainer/LifePage/Civ1/Civ1-2" index="0" unique_id=1377839155] +texture_normal = ExtResource("73_8wjcy") + +[node name="Civ1-3" parent="Stage/StageRows/PageScroller/HBoxContainer/LifePage/Civ1" unique_id=87179881 instance=ExtResource("5_dwbse")] +layout_mode = 0 +offset_left = 660.0 +offset_right = 876.0 +offset_bottom = 256.0 +theme_override_constants/separation = 0 + +[node name="TextureButton" parent="Stage/StageRows/PageScroller/HBoxContainer/LifePage/Civ1/Civ1-3" index="0" unique_id=1377839155] +texture_normal = ExtResource("74_xh3xj") + +[node name="Civ1-4" parent="Stage/StageRows/PageScroller/HBoxContainer/LifePage/Civ1" unique_id=1794092404 instance=ExtResource("5_dwbse")] +layout_mode = 0 +offset_left = 880.0 +offset_right = 1096.0 +offset_bottom = 256.0 +theme_override_constants/separation = 0 + +[node name="TextureButton" parent="Stage/StageRows/PageScroller/HBoxContainer/LifePage/Civ1/Civ1-4" index="0" unique_id=1377839155] +texture_normal = ExtResource("75_ofgfh") + +[node name="Civ1-5" parent="Stage/StageRows/PageScroller/HBoxContainer/LifePage/Civ1" unique_id=746646129 instance=ExtResource("5_dwbse")] +layout_mode = 0 +offset_top = 260.0 +offset_right = 216.0 +offset_bottom = 516.0 +theme_override_constants/separation = 0 + +[node name="TextureButton" parent="Stage/StageRows/PageScroller/HBoxContainer/LifePage/Civ1/Civ1-5" index="0" unique_id=1377839155] +texture_normal = ExtResource("76_6d1iy") + +[node name="Civ1-6" parent="Stage/StageRows/PageScroller/HBoxContainer/LifePage/Civ1" unique_id=16456388 instance=ExtResource("5_dwbse")] +layout_mode = 0 +offset_left = 220.0 +offset_top = 260.0 +offset_right = 436.0 +offset_bottom = 516.0 +theme_override_constants/separation = 0 + +[node name="TextureButton" parent="Stage/StageRows/PageScroller/HBoxContainer/LifePage/Civ1/Civ1-6" index="0" unique_id=1377839155] +texture_normal = ExtResource("77_awgtj") + +[node name="Civ1-7" parent="Stage/StageRows/PageScroller/HBoxContainer/LifePage/Civ1" unique_id=955273046 instance=ExtResource("5_dwbse")] +layout_mode = 0 +offset_left = 440.0 +offset_top = 260.0 +offset_right = 656.0 +offset_bottom = 516.0 +theme_override_constants/separation = 0 + +[node name="TextureButton" parent="Stage/StageRows/PageScroller/HBoxContainer/LifePage/Civ1/Civ1-7" index="0" unique_id=1377839155] +texture_normal = ExtResource("78_mou3f") + +[node name="Civ1-8" parent="Stage/StageRows/PageScroller/HBoxContainer/LifePage/Civ1" unique_id=64273050 instance=ExtResource("5_dwbse")] +layout_mode = 0 +offset_left = 660.0 +offset_top = 260.0 +offset_right = 876.0 +offset_bottom = 516.0 +theme_override_constants/separation = 0 + +[node name="TextureButton" parent="Stage/StageRows/PageScroller/HBoxContainer/LifePage/Civ1/Civ1-8" index="0" unique_id=1377839155] +texture_normal = ExtResource("79_8343f") + +[node name="Civ1-9" parent="Stage/StageRows/PageScroller/HBoxContainer/LifePage/Civ1" unique_id=2139749527 instance=ExtResource("5_dwbse")] +layout_mode = 0 +offset_left = 880.0 +offset_top = 260.0 +offset_right = 1096.0 +offset_bottom = 516.0 +theme_override_constants/separation = 0 + +[node name="TextureButton" parent="Stage/StageRows/PageScroller/HBoxContainer/LifePage/Civ1/Civ1-9" index="0" unique_id=1377839155] +texture_normal = ExtResource("80_2lhbq") + +[node name="Civ2" type="Control" parent="Stage/StageRows/PageScroller/HBoxContainer/LifePage" unique_id=323991195] +visible = false +custom_minimum_size = Vector2(1080, 512) +layout_mode = 2 + +[node name="Civ2-0" parent="Stage/StageRows/PageScroller/HBoxContainer/LifePage/Civ2" unique_id=2035244656 instance=ExtResource("5_dwbse")] +layout_mode = 0 +offset_right = 216.0 +offset_bottom = 256.0 +theme_override_constants/separation = 0 + +[node name="TextureButton" parent="Stage/StageRows/PageScroller/HBoxContainer/LifePage/Civ2/Civ2-0" index="0" unique_id=1377839155] +texture_normal = ExtResource("81_5wt1p") + +[node name="Civ2-1" parent="Stage/StageRows/PageScroller/HBoxContainer/LifePage/Civ2" unique_id=31619695 instance=ExtResource("5_dwbse")] +layout_mode = 0 +offset_left = 220.0 +offset_right = 436.0 +offset_bottom = 256.0 +theme_override_constants/separation = 0 + +[node name="TextureButton" parent="Stage/StageRows/PageScroller/HBoxContainer/LifePage/Civ2/Civ2-1" index="0" unique_id=1377839155] +texture_normal = ExtResource("82_jtjv0") + +[node name="Civ2-2" parent="Stage/StageRows/PageScroller/HBoxContainer/LifePage/Civ2" unique_id=1413429714 instance=ExtResource("5_dwbse")] +layout_mode = 0 +offset_left = 440.0 +offset_right = 656.0 +offset_bottom = 256.0 +theme_override_constants/separation = 0 + +[node name="TextureButton" parent="Stage/StageRows/PageScroller/HBoxContainer/LifePage/Civ2/Civ2-2" index="0" unique_id=1377839155] +texture_normal = ExtResource("83_wiowo") + +[node name="Civ2-3" parent="Stage/StageRows/PageScroller/HBoxContainer/LifePage/Civ2" unique_id=412565932 instance=ExtResource("5_dwbse")] +layout_mode = 0 +offset_left = 660.0 +offset_right = 876.0 +offset_bottom = 256.0 +theme_override_constants/separation = 0 + +[node name="TextureButton" parent="Stage/StageRows/PageScroller/HBoxContainer/LifePage/Civ2/Civ2-3" index="0" unique_id=1377839155] +texture_normal = ExtResource("84_1f132") + +[node name="Civ2-4" parent="Stage/StageRows/PageScroller/HBoxContainer/LifePage/Civ2" unique_id=966143807 instance=ExtResource("5_dwbse")] +layout_mode = 0 +offset_left = 880.0 +offset_right = 1096.0 +offset_bottom = 256.0 +theme_override_constants/separation = 0 + +[node name="TextureButton" parent="Stage/StageRows/PageScroller/HBoxContainer/LifePage/Civ2/Civ2-4" index="0" unique_id=1377839155] +texture_normal = ExtResource("85_why7d") + +[node name="Civ2-5" parent="Stage/StageRows/PageScroller/HBoxContainer/LifePage/Civ2" unique_id=1320885779 instance=ExtResource("5_dwbse")] +layout_mode = 0 +offset_top = 260.0 +offset_right = 216.0 +offset_bottom = 516.0 +theme_override_constants/separation = 0 + +[node name="TextureButton" parent="Stage/StageRows/PageScroller/HBoxContainer/LifePage/Civ2/Civ2-5" index="0" unique_id=1377839155] +texture_normal = ExtResource("86_p12th") + +[node name="Civ2-6" parent="Stage/StageRows/PageScroller/HBoxContainer/LifePage/Civ2" unique_id=792087892 instance=ExtResource("5_dwbse")] +layout_mode = 0 +offset_left = 220.0 +offset_top = 260.0 +offset_right = 436.0 +offset_bottom = 516.0 +theme_override_constants/separation = 0 + +[node name="TextureButton" parent="Stage/StageRows/PageScroller/HBoxContainer/LifePage/Civ2/Civ2-6" index="0" unique_id=1377839155] +texture_normal = ExtResource("87_ttq3l") + +[node name="Civ2-7" parent="Stage/StageRows/PageScroller/HBoxContainer/LifePage/Civ2" unique_id=984318312 instance=ExtResource("5_dwbse")] +layout_mode = 0 +offset_left = 440.0 +offset_top = 260.0 +offset_right = 656.0 +offset_bottom = 516.0 +theme_override_constants/separation = 0 + +[node name="TextureButton" parent="Stage/StageRows/PageScroller/HBoxContainer/LifePage/Civ2/Civ2-7" index="0" unique_id=1377839155] +texture_normal = ExtResource("88_kkvrv") + +[node name="Civ2-8" parent="Stage/StageRows/PageScroller/HBoxContainer/LifePage/Civ2" unique_id=905301730 instance=ExtResource("5_dwbse")] +layout_mode = 0 +offset_left = 660.0 +offset_top = 260.0 +offset_right = 876.0 +offset_bottom = 516.0 +theme_override_constants/separation = 0 + +[node name="TextureButton" parent="Stage/StageRows/PageScroller/HBoxContainer/LifePage/Civ2/Civ2-8" index="0" unique_id=1377839155] +texture_normal = ExtResource("89_4f1xi") + +[node name="Civ2-9" parent="Stage/StageRows/PageScroller/HBoxContainer/LifePage/Civ2" unique_id=462769899 instance=ExtResource("5_dwbse")] +layout_mode = 0 +offset_left = 880.0 +offset_top = 260.0 +offset_right = 1096.0 +offset_bottom = 516.0 +theme_override_constants/separation = 0 + +[node name="TextureButton" parent="Stage/StageRows/PageScroller/HBoxContainer/LifePage/Civ2/Civ2-9" index="0" unique_id=1377839155] +texture_normal = ExtResource("90_ngogq") + +[node name="Civ3" type="Control" parent="Stage/StageRows/PageScroller/HBoxContainer/LifePage" unique_id=289902942] +visible = false +custom_minimum_size = Vector2(1080, 512) +layout_mode = 2 + +[node name="Civ3-0" parent="Stage/StageRows/PageScroller/HBoxContainer/LifePage/Civ3" unique_id=908689677 instance=ExtResource("5_dwbse")] +layout_mode = 0 +offset_right = 216.0 +offset_bottom = 256.0 +theme_override_constants/separation = 0 + +[node name="TextureButton" parent="Stage/StageRows/PageScroller/HBoxContainer/LifePage/Civ3/Civ3-0" index="0" unique_id=1377839155] +texture_normal = ExtResource("91_r5ugs") + +[node name="Civ3-1" parent="Stage/StageRows/PageScroller/HBoxContainer/LifePage/Civ3" unique_id=1726213345 instance=ExtResource("5_dwbse")] +layout_mode = 0 +offset_left = 220.0 +offset_right = 436.0 +offset_bottom = 256.0 +theme_override_constants/separation = 0 + +[node name="TextureButton" parent="Stage/StageRows/PageScroller/HBoxContainer/LifePage/Civ3/Civ3-1" index="0" unique_id=1377839155] +texture_normal = ExtResource("92_312do") + +[node name="Civ3-2" parent="Stage/StageRows/PageScroller/HBoxContainer/LifePage/Civ3" unique_id=1420501015 instance=ExtResource("5_dwbse")] +layout_mode = 0 +offset_left = 440.0 +offset_right = 656.0 +offset_bottom = 256.0 +theme_override_constants/separation = 0 + +[node name="TextureButton" parent="Stage/StageRows/PageScroller/HBoxContainer/LifePage/Civ3/Civ3-2" index="0" unique_id=1377839155] +texture_normal = ExtResource("93_hfaud") + +[node name="Civ3-3" parent="Stage/StageRows/PageScroller/HBoxContainer/LifePage/Civ3" unique_id=2084588622 instance=ExtResource("5_dwbse")] +layout_mode = 0 +offset_left = 660.0 +offset_right = 876.0 +offset_bottom = 256.0 +theme_override_constants/separation = 0 + +[node name="TextureButton" parent="Stage/StageRows/PageScroller/HBoxContainer/LifePage/Civ3/Civ3-3" index="0" unique_id=1377839155] +texture_normal = ExtResource("94_8gw3t") + +[node name="Civ3-4" parent="Stage/StageRows/PageScroller/HBoxContainer/LifePage/Civ3" unique_id=467723837 instance=ExtResource("5_dwbse")] +layout_mode = 0 +offset_left = 880.0 +offset_right = 1096.0 +offset_bottom = 256.0 +theme_override_constants/separation = 0 + +[node name="TextureButton" parent="Stage/StageRows/PageScroller/HBoxContainer/LifePage/Civ3/Civ3-4" index="0" unique_id=1377839155] +texture_normal = ExtResource("95_iyplw") + +[node name="Civ3-5" parent="Stage/StageRows/PageScroller/HBoxContainer/LifePage/Civ3" unique_id=757166956 instance=ExtResource("5_dwbse")] +layout_mode = 0 +offset_top = 260.0 +offset_right = 216.0 +offset_bottom = 516.0 +theme_override_constants/separation = 0 + +[node name="TextureButton" parent="Stage/StageRows/PageScroller/HBoxContainer/LifePage/Civ3/Civ3-5" index="0" unique_id=1377839155] +texture_normal = ExtResource("96_iad0i") + +[node name="Civ3-6" parent="Stage/StageRows/PageScroller/HBoxContainer/LifePage/Civ3" unique_id=586848883 instance=ExtResource("5_dwbse")] +layout_mode = 0 +offset_left = 220.0 +offset_top = 260.0 +offset_right = 436.0 +offset_bottom = 516.0 +theme_override_constants/separation = 0 + +[node name="TextureButton" parent="Stage/StageRows/PageScroller/HBoxContainer/LifePage/Civ3/Civ3-6" index="0" unique_id=1377839155] +texture_normal = ExtResource("97_fl4at") + +[node name="Civ3-7" parent="Stage/StageRows/PageScroller/HBoxContainer/LifePage/Civ3" unique_id=1304501558 instance=ExtResource("5_dwbse")] +layout_mode = 0 +offset_left = 440.0 +offset_top = 260.0 +offset_right = 656.0 +offset_bottom = 516.0 +theme_override_constants/separation = 0 + +[node name="TextureButton" parent="Stage/StageRows/PageScroller/HBoxContainer/LifePage/Civ3/Civ3-7" index="0" unique_id=1377839155] +texture_normal = ExtResource("98_76eeb") + +[node name="Civ3-8" parent="Stage/StageRows/PageScroller/HBoxContainer/LifePage/Civ3" unique_id=1011649373 instance=ExtResource("5_dwbse")] +layout_mode = 0 +offset_left = 660.0 +offset_top = 260.0 +offset_right = 876.0 +offset_bottom = 516.0 +theme_override_constants/separation = 0 + +[node name="TextureButton" parent="Stage/StageRows/PageScroller/HBoxContainer/LifePage/Civ3/Civ3-8" index="0" unique_id=1377839155] +texture_normal = ExtResource("99_d7cwp") + +[node name="Civ3-9" parent="Stage/StageRows/PageScroller/HBoxContainer/LifePage/Civ3" unique_id=1007385930 instance=ExtResource("5_dwbse")] +layout_mode = 0 +offset_left = 880.0 +offset_top = 260.0 +offset_right = 1096.0 +offset_bottom = 516.0 +theme_override_constants/separation = 0 + +[node name="TextureButton" parent="Stage/StageRows/PageScroller/HBoxContainer/LifePage/Civ3/Civ3-9" index="0" unique_id=1377839155] +texture_normal = ExtResource("100_svgmy") + +[node name="Civ4" type="Control" parent="Stage/StageRows/PageScroller/HBoxContainer/LifePage" unique_id=19783669] +visible = false +custom_minimum_size = Vector2(1080, 512) +layout_mode = 2 + +[node name="Civ4-0" parent="Stage/StageRows/PageScroller/HBoxContainer/LifePage/Civ4" unique_id=1213098908 instance=ExtResource("5_dwbse")] +layout_mode = 0 +offset_right = 216.0 +offset_bottom = 256.0 +theme_override_constants/separation = 0 + +[node name="TextureButton" parent="Stage/StageRows/PageScroller/HBoxContainer/LifePage/Civ4/Civ4-0" index="0" unique_id=1377839155] +texture_normal = ExtResource("101_obhsp") + +[node name="Civ4-1" parent="Stage/StageRows/PageScroller/HBoxContainer/LifePage/Civ4" unique_id=1646968450 instance=ExtResource("5_dwbse")] +layout_mode = 0 +offset_left = 220.0 +offset_right = 436.0 +offset_bottom = 256.0 +theme_override_constants/separation = 0 + +[node name="TextureButton" parent="Stage/StageRows/PageScroller/HBoxContainer/LifePage/Civ4/Civ4-1" index="0" unique_id=1377839155] +texture_normal = ExtResource("102_3p52x") + +[node name="Civ4-2" parent="Stage/StageRows/PageScroller/HBoxContainer/LifePage/Civ4" unique_id=190350435 instance=ExtResource("5_dwbse")] +layout_mode = 0 +offset_left = 440.0 +offset_right = 656.0 +offset_bottom = 256.0 +theme_override_constants/separation = 0 + +[node name="TextureButton" parent="Stage/StageRows/PageScroller/HBoxContainer/LifePage/Civ4/Civ4-2" index="0" unique_id=1377839155] +texture_normal = ExtResource("103_7fg3d") + +[node name="Civ4-3" parent="Stage/StageRows/PageScroller/HBoxContainer/LifePage/Civ4" unique_id=150912293 instance=ExtResource("5_dwbse")] +layout_mode = 0 +offset_left = 660.0 +offset_right = 876.0 +offset_bottom = 256.0 +theme_override_constants/separation = 0 + +[node name="TextureButton" parent="Stage/StageRows/PageScroller/HBoxContainer/LifePage/Civ4/Civ4-3" index="0" unique_id=1377839155] +texture_normal = ExtResource("104_6irl1") + +[node name="Civ4-4" parent="Stage/StageRows/PageScroller/HBoxContainer/LifePage/Civ4" unique_id=1598741795 instance=ExtResource("5_dwbse")] +layout_mode = 0 +offset_left = 880.0 +offset_right = 1096.0 +offset_bottom = 256.0 +theme_override_constants/separation = 0 + +[node name="TextureButton" parent="Stage/StageRows/PageScroller/HBoxContainer/LifePage/Civ4/Civ4-4" index="0" unique_id=1377839155] +texture_normal = ExtResource("105_ogahp") + +[node name="Civ4-5" parent="Stage/StageRows/PageScroller/HBoxContainer/LifePage/Civ4" unique_id=1619295013 instance=ExtResource("5_dwbse")] +layout_mode = 0 +offset_top = 260.0 +offset_right = 216.0 +offset_bottom = 516.0 +theme_override_constants/separation = 0 + +[node name="TextureButton" parent="Stage/StageRows/PageScroller/HBoxContainer/LifePage/Civ4/Civ4-5" index="0" unique_id=1377839155] +texture_normal = ExtResource("106_y3npd") [node name="CommandProcessor" type="Node" parent="." unique_id=2069361293] script = ExtResource("5_036b0") [connection signal="button_pressed" from="Stage/StageRows/TopMenu" to="CommandProcessor" method="print_smth"] -[editable path="Stage/StageRows/ScrollContainer/HBoxContainer/Resources/VBoxContainer/Space"] -[editable path="Stage/StageRows/ScrollContainer/HBoxContainer/Resources/VBoxContainer/Hydrogene"] -[editable path="Stage/StageRows/ScrollContainer/HBoxContainer/Resources/VBoxContainer/Helium"] -[editable path="Stage/StageRows/ScrollContainer/HBoxContainer/Resources/VBoxContainer/Metal"] -[editable path="Stage/StageRows/ScrollContainer/HBoxContainer/Stars/Nebula"] -[editable path="Stage/StageRows/ScrollContainer/HBoxContainer/Stars/Globula"] -[editable path="Stage/StageRows/ScrollContainer/HBoxContainer/Stars/StarNursery"] -[editable path="Stage/StageRows/ScrollContainer/HBoxContainer/Stars/MolecularCloud"] -[editable path="Stage/StageRows/ScrollContainer/HBoxContainer/Stars/ActiveStarNursery"] -[editable path="Stage/StageRows/ScrollContainer/HBoxContainer/Stars/BrownDwarf"] -[editable path="Stage/StageRows/ScrollContainer/HBoxContainer/Stars/RedDwarf"] -[editable path="Stage/StageRows/ScrollContainer/HBoxContainer/Stars/OrangeDwarf"] -[editable path="Stage/StageRows/ScrollContainer/HBoxContainer/Stars/YellowDwarf"] -[editable path="Stage/StageRows/ScrollContainer/HBoxContainer/Stars/WhiteYellowDwarf"] -[editable path="Stage/StageRows/ScrollContainer/HBoxContainer/Stars/RedGiant"] -[editable path="Stage/StageRows/ScrollContainer/HBoxContainer/Stars/YellowGiant"] -[editable path="Stage/StageRows/ScrollContainer/HBoxContainer/Stars/BlueGiant"] -[editable path="Stage/StageRows/ScrollContainer/HBoxContainer/Stars/SuperGiant"] -[editable path="Stage/StageRows/ScrollContainer/HBoxContainer/Stars/HyperGiant"] -[editable path="Stage/StageRows/ScrollContainer/HBoxContainer/Stars/WhiteDwarf"] -[editable path="Stage/StageRows/ScrollContainer/HBoxContainer/Stars/NeutronStar"] -[editable path="Stage/StageRows/ScrollContainer/HBoxContainer/Stars/Magnetar"] -[editable path="Stage/StageRows/ScrollContainer/HBoxContainer/Stars/BlackHole"] -[editable path="Stage/StageRows/ScrollContainer/HBoxContainer/Stars/SupermassiveBlackHole"] +[editable path="Stage/StageRows/PageScroller/HBoxContainer/ForcePage/Forces/Shovelin"] +[editable path="Stage/StageRows/PageScroller/HBoxContainer/ForcePage/Forces/Inflatin"] +[editable path="Stage/StageRows/PageScroller/HBoxContainer/ForcePage/Forces/Temporite"] +[editable path="Stage/StageRows/PageScroller/HBoxContainer/ForcePage/Forces/Collisite"] +[editable path="Stage/StageRows/PageScroller/HBoxContainer/ForcePage/Forces/Primex"] +[editable path="Stage/StageRows/PageScroller/HBoxContainer/ForcePage/Forces/Singularite"] +[editable path="Stage/StageRows/PageScroller/HBoxContainer/ForcePage/Forces/Renewin"] +[editable path="Stage/StageRows/PageScroller/HBoxContainer/ForcePage/Forces/Infusite"] +[editable path="Stage/StageRows/PageScroller/HBoxContainer/ForcePage/Forces/Frostin"] +[editable path="Stage/StageRows/PageScroller/HBoxContainer/ForcePage/Forces/Destellarite"] +[editable path="Stage/StageRows/PageScroller/HBoxContainer/ForcePage/Forces/Rockex"] +[editable path="Stage/StageRows/PageScroller/HBoxContainer/ForcePage/Forces/Panspermin"] +[editable path="Stage/StageRows/PageScroller/HBoxContainer/ForcePage/Forces/Gaianite"] +[editable path="Stage/StageRows/PageScroller/HBoxContainer/ForcePage/Forces/Darwinite"] +[editable path="Stage/StageRows/PageScroller/HBoxContainer/ForcePage/Forces/Edenex"] +[editable path="Stage/StageRows/PageScroller/HBoxContainer/ForcePage/Forces/Pacifin"] +[editable path="Stage/StageRows/PageScroller/HBoxContainer/ForcePage/Forces/Enragein"] +[editable path="Stage/StageRows/PageScroller/HBoxContainer/ForcePage/Forces/Moralite"] +[editable path="Stage/StageRows/PageScroller/HBoxContainer/ForcePage/Forces/Discriminite"] +[editable path="Stage/StageRows/PageScroller/HBoxContainer/ForcePage/Forces/Reprex"] +[editable path="Stage/StageRows/PageScroller/HBoxContainer/ResourcePage/HBoxContainer/VBoxContainer/Space"] +[editable path="Stage/StageRows/PageScroller/HBoxContainer/ResourcePage/HBoxContainer/VBoxContainer/Hydrogene"] +[editable path="Stage/StageRows/PageScroller/HBoxContainer/ResourcePage/HBoxContainer/VBoxContainer/Helium"] +[editable path="Stage/StageRows/PageScroller/HBoxContainer/ResourcePage/HBoxContainer/VBoxContainer/Metal"] +[editable path="Stage/StageRows/PageScroller/HBoxContainer/StarPage/Stars/Nebula"] +[editable path="Stage/StageRows/PageScroller/HBoxContainer/StarPage/Stars/Globula"] +[editable path="Stage/StageRows/PageScroller/HBoxContainer/StarPage/Stars/StarNursery"] +[editable path="Stage/StageRows/PageScroller/HBoxContainer/StarPage/Stars/MolecularCloud"] +[editable path="Stage/StageRows/PageScroller/HBoxContainer/StarPage/Stars/ActiveStarNursery"] +[editable path="Stage/StageRows/PageScroller/HBoxContainer/StarPage/Stars/BrownDwarf"] +[editable path="Stage/StageRows/PageScroller/HBoxContainer/StarPage/Stars/RedDwarf"] +[editable path="Stage/StageRows/PageScroller/HBoxContainer/StarPage/Stars/OrangeDwarf"] +[editable path="Stage/StageRows/PageScroller/HBoxContainer/StarPage/Stars/YellowDwarf"] +[editable path="Stage/StageRows/PageScroller/HBoxContainer/StarPage/Stars/WhiteYellowDwarf"] +[editable path="Stage/StageRows/PageScroller/HBoxContainer/StarPage/Stars/RedGiant"] +[editable path="Stage/StageRows/PageScroller/HBoxContainer/StarPage/Stars/WhiteStar"] +[editable path="Stage/StageRows/PageScroller/HBoxContainer/StarPage/Stars/BlueGiant"] +[editable path="Stage/StageRows/PageScroller/HBoxContainer/StarPage/Stars/SuperGiant"] +[editable path="Stage/StageRows/PageScroller/HBoxContainer/StarPage/Stars/WhiteDwarf"] +[editable path="Stage/StageRows/PageScroller/HBoxContainer/StarPage/Stars/HyperGiant"] +[editable path="Stage/StageRows/PageScroller/HBoxContainer/StarPage/Stars/NeutronStar"] +[editable path="Stage/StageRows/PageScroller/HBoxContainer/StarPage/Stars/Magnetar"] +[editable path="Stage/StageRows/PageScroller/HBoxContainer/StarPage/Stars/BlackHole"] +[editable path="Stage/StageRows/PageScroller/HBoxContainer/StarPage/Stars/SupermassiveBlackHole"] +[editable path="Stage/StageRows/PageScroller/HBoxContainer/StructurePage/Structures/StarClusterScattered"] +[editable path="Stage/StageRows/PageScroller/HBoxContainer/StructurePage/Structures/StarClusterSmall"] +[editable path="Stage/StageRows/PageScroller/HBoxContainer/StructurePage/Structures/StarClusterMedium"] +[editable path="Stage/StageRows/PageScroller/HBoxContainer/StructurePage/Structures/StarClusterLarge"] +[editable path="Stage/StageRows/PageScroller/HBoxContainer/StructurePage/Structures/StarClusterGiant"] +[editable path="Stage/StageRows/PageScroller/HBoxContainer/StructurePage/Structures/GalaxyEllipticalDwarf"] +[editable path="Stage/StageRows/PageScroller/HBoxContainer/StructurePage/Structures/GalaxyEllipticalSmall"] +[editable path="Stage/StageRows/PageScroller/HBoxContainer/StructurePage/Structures/GalaxyEllipticalMedium"] +[editable path="Stage/StageRows/PageScroller/HBoxContainer/StructurePage/Structures/GalaxyEllipticalLarge"] +[editable path="Stage/StageRows/PageScroller/HBoxContainer/StructurePage/Structures/GalaxyEllipticalGiant"] +[editable path="Stage/StageRows/PageScroller/HBoxContainer/StructurePage/Structures/GalaxySpiralDwarf"] +[editable path="Stage/StageRows/PageScroller/HBoxContainer/StructurePage/Structures/GalaxySpiralSmall"] +[editable path="Stage/StageRows/PageScroller/HBoxContainer/StructurePage/Structures/GalaxySpiralMedium"] +[editable path="Stage/StageRows/PageScroller/HBoxContainer/StructurePage/Structures/GalaxySpiralLarge"] +[editable path="Stage/StageRows/PageScroller/HBoxContainer/StructurePage/Structures/GalaxySpiralGiant"] +[editable path="Stage/StageRows/PageScroller/HBoxContainer/StructurePage/Structures/GalacticGroup"] +[editable path="Stage/StageRows/PageScroller/HBoxContainer/StructurePage/Structures/GalacticSupercluster"] +[editable path="Stage/StageRows/PageScroller/HBoxContainer/StructurePage/Structures/GalacticFilament"] +[editable path="Stage/StageRows/PageScroller/HBoxContainer/StructurePage/Structures/GalacticWall"] +[editable path="Stage/StageRows/PageScroller/HBoxContainer/StructurePage/Structures/UniverseBubble"] +[editable path="Stage/StageRows/PageScroller/HBoxContainer/LifePage/Planets/GasGiant"] +[editable path="Stage/StageRows/PageScroller/HBoxContainer/LifePage/Planets/AsteroidBelt"] +[editable path="Stage/StageRows/PageScroller/HBoxContainer/LifePage/Planets/RockyPlanet"] +[editable path="Stage/StageRows/PageScroller/HBoxContainer/LifePage/Planets/HabitablePlanet"] +[editable path="Stage/StageRows/PageScroller/HBoxContainer/LifePage/Planets/LivingPlanet"] +[editable path="Stage/StageRows/PageScroller/HBoxContainer/LifePage/Planets/Civ0"] +[editable path="Stage/StageRows/PageScroller/HBoxContainer/LifePage/Planets/Civ1"] +[editable path="Stage/StageRows/PageScroller/HBoxContainer/LifePage/Planets/Civ2"] +[editable path="Stage/StageRows/PageScroller/HBoxContainer/LifePage/Planets/Civ3"] +[editable path="Stage/StageRows/PageScroller/HBoxContainer/LifePage/Planets/Civ4"] +[editable path="Stage/StageRows/PageScroller/HBoxContainer/LifePage/Civ0/Civ0-0"] +[editable path="Stage/StageRows/PageScroller/HBoxContainer/LifePage/Civ0/Civ0-1"] +[editable path="Stage/StageRows/PageScroller/HBoxContainer/LifePage/Civ0/Civ0-2"] +[editable path="Stage/StageRows/PageScroller/HBoxContainer/LifePage/Civ0/Civ0-3"] +[editable path="Stage/StageRows/PageScroller/HBoxContainer/LifePage/Civ0/Civ0-4"] +[editable path="Stage/StageRows/PageScroller/HBoxContainer/LifePage/Civ0/Civ0-5"] +[editable path="Stage/StageRows/PageScroller/HBoxContainer/LifePage/Civ0/Civ0-6"] +[editable path="Stage/StageRows/PageScroller/HBoxContainer/LifePage/Civ0/Civ0-7"] +[editable path="Stage/StageRows/PageScroller/HBoxContainer/LifePage/Civ0/Civ0-8"] +[editable path="Stage/StageRows/PageScroller/HBoxContainer/LifePage/Civ0/Civ0-9"] +[editable path="Stage/StageRows/PageScroller/HBoxContainer/LifePage/Civ1/Civ1-0"] +[editable path="Stage/StageRows/PageScroller/HBoxContainer/LifePage/Civ1/Civ1-1"] +[editable path="Stage/StageRows/PageScroller/HBoxContainer/LifePage/Civ1/Civ1-2"] +[editable path="Stage/StageRows/PageScroller/HBoxContainer/LifePage/Civ1/Civ1-3"] +[editable path="Stage/StageRows/PageScroller/HBoxContainer/LifePage/Civ1/Civ1-4"] +[editable path="Stage/StageRows/PageScroller/HBoxContainer/LifePage/Civ1/Civ1-5"] +[editable path="Stage/StageRows/PageScroller/HBoxContainer/LifePage/Civ1/Civ1-6"] +[editable path="Stage/StageRows/PageScroller/HBoxContainer/LifePage/Civ1/Civ1-7"] +[editable path="Stage/StageRows/PageScroller/HBoxContainer/LifePage/Civ1/Civ1-8"] +[editable path="Stage/StageRows/PageScroller/HBoxContainer/LifePage/Civ1/Civ1-9"] +[editable path="Stage/StageRows/PageScroller/HBoxContainer/LifePage/Civ2/Civ2-0"] +[editable path="Stage/StageRows/PageScroller/HBoxContainer/LifePage/Civ2/Civ2-1"] +[editable path="Stage/StageRows/PageScroller/HBoxContainer/LifePage/Civ2/Civ2-2"] +[editable path="Stage/StageRows/PageScroller/HBoxContainer/LifePage/Civ2/Civ2-3"] +[editable path="Stage/StageRows/PageScroller/HBoxContainer/LifePage/Civ2/Civ2-4"] +[editable path="Stage/StageRows/PageScroller/HBoxContainer/LifePage/Civ2/Civ2-5"] +[editable path="Stage/StageRows/PageScroller/HBoxContainer/LifePage/Civ2/Civ2-6"] +[editable path="Stage/StageRows/PageScroller/HBoxContainer/LifePage/Civ2/Civ2-7"] +[editable path="Stage/StageRows/PageScroller/HBoxContainer/LifePage/Civ2/Civ2-8"] +[editable path="Stage/StageRows/PageScroller/HBoxContainer/LifePage/Civ2/Civ2-9"] +[editable path="Stage/StageRows/PageScroller/HBoxContainer/LifePage/Civ3/Civ3-0"] +[editable path="Stage/StageRows/PageScroller/HBoxContainer/LifePage/Civ3/Civ3-1"] +[editable path="Stage/StageRows/PageScroller/HBoxContainer/LifePage/Civ3/Civ3-2"] +[editable path="Stage/StageRows/PageScroller/HBoxContainer/LifePage/Civ3/Civ3-3"] +[editable path="Stage/StageRows/PageScroller/HBoxContainer/LifePage/Civ3/Civ3-4"] +[editable path="Stage/StageRows/PageScroller/HBoxContainer/LifePage/Civ3/Civ3-5"] +[editable path="Stage/StageRows/PageScroller/HBoxContainer/LifePage/Civ3/Civ3-6"] +[editable path="Stage/StageRows/PageScroller/HBoxContainer/LifePage/Civ3/Civ3-7"] +[editable path="Stage/StageRows/PageScroller/HBoxContainer/LifePage/Civ3/Civ3-8"] +[editable path="Stage/StageRows/PageScroller/HBoxContainer/LifePage/Civ3/Civ3-9"] +[editable path="Stage/StageRows/PageScroller/HBoxContainer/LifePage/Civ4/Civ4-0"] +[editable path="Stage/StageRows/PageScroller/HBoxContainer/LifePage/Civ4/Civ4-1"] +[editable path="Stage/StageRows/PageScroller/HBoxContainer/LifePage/Civ4/Civ4-2"] +[editable path="Stage/StageRows/PageScroller/HBoxContainer/LifePage/Civ4/Civ4-3"] +[editable path="Stage/StageRows/PageScroller/HBoxContainer/LifePage/Civ4/Civ4-4"] +[editable path="Stage/StageRows/PageScroller/HBoxContainer/LifePage/Civ4/Civ4-5"]