Coder Social home page Coder Social logo

snoringcatgames / surfacer Goto Github PK

View Code? Open in Web Editor NEW
87.0 3.0 6.0 49.65 MB

AI and pathfinding for 2D-platformers in Godot.

Home Page: https://snoringcat.games/play/squirrel-away

License: MIT License

GDScript 100.00%
2d-platformer game pathfinding framework godot gdscript procedural ai navigation platformer 2d point-and-click

surfacer's Introduction

Surfacer

The Surfacer icon, showing a path between surfaces.


NOTE: Consider this a pre-alpha release.

  • This framework still has many rough edges, is still changing a lot, and is probably a lot more inflexible than you would need (it makes a lot of assumptions about how you've structured your app).
  • See the Still not working? docs for more context into how difficult this may be for you to use.

Live demo (source code)

Godot Asset Library

Extended tutorial on how this AI works

AI and pathfinding for 2D-platformers in Godot.

"Surfacer": Like a platformer, but with walking, climbing, and jumping on all surfaces!


NOTE: This framework depends the separate Scaffolder library.


An animated GIF showing a player-controlled character moving around according to player clicks within the level. Path preselections are shown as the click is dragged around the level.

What is this?

tl;dr: Surfacer works by pre-parsing a level into a "platform graph". The nodes are represented by points along the different surfaces in the level (floors, walls, and ceilings). The edges are represented by possible movement trajectories between points along surfaces. There are different types of edges for different types of movement (e.g., jumping from a floor to a floor, falling from a wall, walking along a floor). At run time, A* search is used to calculate a path to a given destination.

Some features include:

  • Surfacer includes a powerful character-behavior system for easily creating a character AI with high-level behaviors like "wander", "follow", "run-away", "return".
  • Easy-to-use point-and-click navigation for player-controlled characters.
  • Configurable movement parameters on a per-character basis (e.g., horizontal acceleration, jump power, gravity, collision boundary shape and size, which types of edge movement are allowed).
  • Level creation using Godot's standard pattern with a TileMap in the 2D scene editor.
  • Preparsing the level into a platform graph, and using A* search for efficient path-finding at runtime.
  • A powerful inspector for analyzing the platform graph, in order to debug and better understand how edges were calculated.
  • Walking on floors, climbing on walls, climbing on ceilings, jumping and falling from anywhere.
  • Variable-height jump and fast-fall.
  • Adjusting movement trajectories to move around intermediate surfaces (such as jumping over a wall or around a floor).

But why?

Because there aren't many other tools out there for intelligent pathfinding in a platformer.

The vast majority of platformers use pretty simple npc AI for movement--for example:

  • Walk to edge, turn around, repeat.
  • Jump continuously, moving forward.
  • Move with a regular bounce or surface-following pattern.
  • Move horizontally toward the player character, "floating" vertically as needed in order to move around obstacles and platforms.

Most examples of more sophisticated AI pathfinding behavior are still pretty limited. One common technique uses machine-learning and is trained by hundreds to thousands of human-generated jumps on an explicit pre-fabricated level. This makes level-generation difficult and is not flexible to dynamic platform creation/movement.

There are two key reasons why good path-finding AI isn't really used in platformers:

  1. It's hard to implement right; there is a lot of math involved, and there are a lot of different edge cases to account for.
  2. Dumb AI is usually plenty effective on its own to create compelling gameplay. The player often doesn't really notice or care how simple the behavior is.

But there are use-cases for which we really benefit from an AI that can accurately immitate the same movement mechanics of the character. One example is if we want to be able to control the character by tapping on locations that they should move toward through the level. Another example is if we want to have a flexible game mode in which an npc can swap in for a player character depending on how many players are present.

๐Ÿ“š Learn more!

An animated GIF showing characters moving around with various behaviors and paths.

๐Ÿ“ƒ Licenses

The Surfacer icon, showing a path between surfaces.

surfacer's People

Contributors

levilindsey avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar

surfacer's Issues

Moving files from default location causes errors

If the "surfacer" files are moved to another directory, Godot produces a large number of errors when you try to create a new resource in the Inspector:

res://src/gui/screen.gd:3 - Parse Error: No class icon found at: res://addons/scaffolder/assets/images/editor_icons/scaffolder_panel_container.png modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/screens/about_screen.gd:10 - Parse Error: The method "get_node" isn't declared in the current class. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/screen.gd:3 - Parse Error: No class icon found at: res://addons/scaffolder/assets/images/editor_icons/scaffolder_panel_container.png modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/widgets/accordion_body.gd:3 - Parse Error: No class icon found at: res://addons/scaffolder/assets/images/editor_icons/accordion_body.png modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/widgets/accordion_header.gd:3 - Parse Error: No class icon found at: res://addons/scaffolder/assets/images/editor_icons/accordion_header.png modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/widgets/accordion_panel.gd:3 - Parse Error: No class icon found at: res://addons/scaffolder/assets/images/editor_icons/accordion_panel.png modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/surface/surface_type.gd:26 - Parse Error: The identifier "Sc" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/character/action/character_action_handler.gd:28 - Parse Error: The identifier "Sc" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/character/action/action_handlers/air_dash_action.gd:6 - Parse Error: Expected a constant expression. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/character/action/character_action_handler.gd:28 - Parse Error: The identifier "Sc" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/surface/surface_type.gd:26 - Parse Error: The identifier "Sc" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/character/action/character_action_handler.gd:28 - Parse Error: The identifier "Sc" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/character/action/action_handlers/air_default_action.gd:6 - Parse Error: Expected a constant expression. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/character/action/character_action_handler.gd:28 - Parse Error: The identifier "Sc" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/surface/surface_type.gd:26 - Parse Error: The identifier "Sc" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/character/action/character_action_handler.gd:28 - Parse Error: The identifier "Sc" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/character/action/action_handlers/air_jump_action.gd:6 - Parse Error: Expected a constant expression. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/character/action/character_action_handler.gd:28 - Parse Error: The identifier "Sc" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/surface/surface_type.gd:26 - Parse Error: The identifier "Sc" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/character/action/character_action_handler.gd:28 - Parse Error: The identifier "Sc" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/character/action/action_handlers/all_default_action.gd:6 - Parse Error: Expected a constant expression. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/character/action/character_action_handler.gd:28 - Parse Error: The identifier "Sc" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR modules/gdscript/gdscript.cpp:815 - Condition "err" is true. Returned: err Cannot load source code from file 'res://addons/scaffolder/addons/crypto_uuid_v4/uuid.gd'. Failed loading resource: res://addons/scaffolder/addons/crypto_uuid_v4/uuid.gd. Make sure resources have been imported by opening the project in the editor at least once. res://src/data/analytics.gd:23 - Parse Error: Can't preload resource at path: res://addons/scaffolder/addons/crypto_uuid_v4/uuid.gd modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/widgets/animated_texture_rect.gd:3 - Parse Error: No class icon found at: res://addons/scaffolder/assets/images/editor_icons/animated_texture_rect.png modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/surface/surface_side.gd:26 - Parse Error: The identifier "Sc" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/surface/surface.gd:207 - Parse Error: The class "SurfaceSide" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/annotators/color_params/color_params_type.gd:20 - Parse Error: The identifier "Sc" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/annotators/color_params/color_params.gd:15 - Parse Error: The class "ColorParamsType" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/annotators/annotation_element.gd:38 - Parse Error: The class "Surface" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/annotators/annotation_element_type.gd:41 - Parse Error: The identifier "Sc" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/annotators/annotator_type.gd:41 - Parse Error: The identifier "Sc" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/utils/time/scaffolder_tween.gd:19 - Parse Error: The identifier "Sc" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/utils/time/scaffolder_tween.gd:19 - Parse Error: The identifier "Sc" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/utils/audio.gd:24 - Parse Error: The class "ScaffolderTween" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/surface/surface_side.gd:26 - Parse Error: The identifier "Sc" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/surface/surface.gd:207 - Parse Error: The class "SurfaceSide" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/surface/position_along_surface.gd:36 - Parse Error: The class "Surface" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/surface/surface_side.gd:26 - Parse Error: The identifier "Sc" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/surface/surface.gd:207 - Parse Error: The class "SurfaceSide" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/surface/position_along_surface.gd:36 - Parse Error: The class "Surface" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/edge/models/edge_attempt.gd:25 - Parse Error: The class "PositionAlongSurface" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/surface/surface_side.gd:26 - Parse Error: The identifier "Sc" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/surface/surface.gd:207 - Parse Error: The class "SurfaceSide" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/surface/position_along_surface.gd:36 - Parse Error: The class "Surface" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/edge/edges/edge.gd:559 - Parse Error: The class "PositionAlongSurface" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/platform_graph_path.gd:46 - Parse Error: The class "Edge" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/utils/time/beat_tracker.gd:149 - Parse Error: The class "PlatformGraphPath" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/surface/surface_side.gd:26 - Parse Error: The identifier "Sc" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/surface/surface.gd:207 - Parse Error: The class "SurfaceSide" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/surface/position_along_surface.gd:36 - Parse Error: The class "Surface" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/character/behaviors/behavior.gd:337 - Parse Error: The class "PositionAlongSurface" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/character/behaviors/behavior_move_result.gd:23 - Parse Error: The identifier "Sc" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/widgets/scaffolder_texture_button.gd:3 - Parse Error: No class icon found at: res://addons/scaffolder/assets/images/editor_icons/scaffolder_texture_button.png modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/widgets/scaffolder_label.gd:3 - Parse Error: No class icon found at: res://addons/scaffolder/assets/images/editor_icons/scaffolder_label.png modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/control_row_list/control_row.gd:21 - Parse Error: The class "ScaffolderTextureButton" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/control_row_list/checkbox_control_row.gd:73 - Parse Error: The class "ControlRow" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/control_rows/settings/button_controls_control_row.gd:18 - Parse Error: The identifier "Sc" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/widgets/scaffolder_texture_button.gd:3 - Parse Error: No class icon found at: res://addons/scaffolder/assets/images/editor_icons/scaffolder_texture_button.png modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/widgets/scaffolder_label.gd:3 - Parse Error: No class icon found at: res://addons/scaffolder/assets/images/editor_icons/scaffolder_label.png modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/control_row_list/control_row.gd:21 - Parse Error: The class "ScaffolderTextureButton" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/control_row_list/checkbox_control_row.gd:73 - Parse Error: The class "ControlRow" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/widgets/scaffolder_texture_button.gd:3 - Parse Error: No class icon found at: res://addons/scaffolder/assets/images/editor_icons/scaffolder_texture_button.png modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/widgets/scaffolder_label.gd:3 - Parse Error: No class icon found at: res://addons/scaffolder/assets/images/editor_icons/scaffolder_label.png modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/control_row_list/control_row.gd:21 - Parse Error: The class "ScaffolderTextureButton" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/utils/time/scaffolder_tween.gd:19 - Parse Error: The identifier "Sc" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/utils/camera_controller.gd:20 - Parse Error: The class "ScaffolderTween" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/utils/time/scaffolder_tween.gd:19 - Parse Error: The identifier "Sc" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/level/camera_pan_controller.gd:10 - Parse Error: The class "ScaffolderTween" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/utils/camera_shake.gd:28 - Parse Error: The identifier "Sc" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/widgets/scaffolder_texture_button.gd:3 - Parse Error: No class icon found at: res://addons/scaffolder/assets/images/editor_icons/scaffolder_texture_button.png modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/widgets/scaffolder_label.gd:3 - Parse Error: No class icon found at: res://addons/scaffolder/assets/images/editor_icons/scaffolder_label.png modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/control_row_list/control_row.gd:21 - Parse Error: The class "ScaffolderTextureButton" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/control_row_list/slider_control_row.gd:123 - Parse Error: The class "ControlRow" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/control_rows/settings/camera_zoom_control_row.gd:12 - Parse Error: Expected a constant expression. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/widgets/scaffolder_texture_button.gd:3 - Parse Error: No class icon found at: res://addons/scaffolder/assets/images/editor_icons/scaffolder_texture_button.png modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/widgets/scaffolder_label.gd:3 - Parse Error: No class icon found at: res://addons/scaffolder/assets/images/editor_icons/scaffolder_label.png modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/control_row_list/control_row.gd:21 - Parse Error: The class "ScaffolderTextureButton" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/control_row_list/slider_control_row.gd:123 - Parse Error: The class "ControlRow" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/widgets/scaffolder_texture_button.gd:3 - Parse Error: No class icon found at: res://addons/scaffolder/assets/images/editor_icons/scaffolder_texture_button.png modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/widgets/scaffolder_label.gd:3 - Parse Error: No class icon found at: res://addons/scaffolder/assets/images/editor_icons/scaffolder_label.png modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/control_row_list/control_row.gd:21 - Parse Error: The class "ScaffolderTextureButton" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/utils/canvas_layers.gd:39 - Parse Error: The identifier "Sc" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/surface/surface_type.gd:26 - Parse Error: The identifier "Sc" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/character/action/character_action_handler.gd:28 - Parse Error: The identifier "Sc" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/character/action/action_handlers/cap_velocity_action.gd:6 - Parse Error: Expected a constant expression. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/character/action/character_action_handler.gd:28 - Parse Error: The identifier "Sc" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/surface/surface_type.gd:26 - Parse Error: The identifier "Sc" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/character/action/character_action_handler.gd:28 - Parse Error: The identifier "Sc" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/character/action/action_handlers/ceiling_crawl_action.gd:6 - Parse Error: Expected a constant expression. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/character/action/character_action_handler.gd:28 - Parse Error: The identifier "Sc" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/surface/surface_type.gd:26 - Parse Error: The identifier "Sc" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/character/action/character_action_handler.gd:28 - Parse Error: The identifier "Sc" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/character/action/action_handlers/ceiling_default_action.gd:6 - Parse Error: Expected a constant expression. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/character/action/character_action_handler.gd:28 - Parse Error: The identifier "Sc" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/surface/surface_type.gd:26 - Parse Error: The identifier "Sc" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/character/action/character_action_handler.gd:28 - Parse Error: The identifier "Sc" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/character/action/action_handlers/ceiling_fall_action.gd:6 - Parse Error: Expected a constant expression. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/character/action/character_action_handler.gd:28 - Parse Error: The identifier "Sc" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/surface/surface_type.gd:26 - Parse Error: The identifier "Sc" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/character/action/character_action_handler.gd:28 - Parse Error: The identifier "Sc" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/character/action/action_handlers/ceiling_jump_down_action.gd:6 - Parse Error: Expected a constant expression. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/character/action/character_action_handler.gd:28 - Parse Error: The identifier "Sc" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/platform_graph_inspector/inspector_item_controllers/inspector_item_type.gd:104 - Parse Error: The identifier "Sc" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/edge/edges/edge_type.gd:32 - Parse Error: The identifier "Sc" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/edge/edges/edge_type.gd:32 - Parse Error: The identifier "Sc" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/edge/edges/edge_type.gd:32 - Parse Error: The identifier "Sc" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/platform_graph_inspector/inspector_item_controllers/inspector_item_controller.gd:5 - Parse Error: Expected a constant expression. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/edge/models/movement_parameters.gd:3 - Parse Error: No class icon found at: res://addons/surfacer/assets/images/editor_icons/movement_params.png modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/surface/surface_side.gd:26 - Parse Error: The identifier "Sc" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/surface/surface.gd:207 - Parse Error: The class "SurfaceSide" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/surface/position_along_surface.gd:36 - Parse Error: The class "Surface" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/surface/surface_side.gd:26 - Parse Error: The identifier "Sc" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/surface/surface.gd:207 - Parse Error: The class "SurfaceSide" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/surface/position_along_surface.gd:36 - Parse Error: The class "Surface" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/platform_graph.gd:373 - Parse Error: The class "MovementParameters" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/platform_graph_inspector/inspector_item_controllers/surfaces_group/surfaces_of_side_item_controller.gd:15 - Parse Error: The class "PlatformGraph" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/platform_graph_inspector/inspector_item_controllers/surfaces_group/ceilings_item_controller.gd:5 - Parse Error: Expected a constant expression. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/edge/edges/edge_type.gd:32 - Parse Error: The identifier "Sc" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/edge/edges/edge_type.gd:32 - Parse Error: The identifier "Sc" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/edge/edges/edge_type.gd:32 - Parse Error: The identifier "Sc" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/platform_graph_inspector/inspector_item_controllers/inspector_item_controller.gd:5 - Parse Error: Expected a constant expression. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/edge/models/movement_parameters.gd:3 - Parse Error: No class icon found at: res://addons/surfacer/assets/images/editor_icons/movement_params.png modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/surface/surface_side.gd:26 - Parse Error: The identifier "Sc" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/surface/surface.gd:207 - Parse Error: The class "SurfaceSide" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/surface/position_along_surface.gd:36 - Parse Error: The class "Surface" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/surface/surface_side.gd:26 - Parse Error: The identifier "Sc" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/surface/surface.gd:207 - Parse Error: The class "SurfaceSide" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/surface/position_along_surface.gd:36 - Parse Error: The class "Surface" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/platform_graph.gd:373 - Parse Error: The class "MovementParameters" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/platform_graph_inspector/inspector_item_controllers/surfaces_group/surfaces_of_side_item_controller.gd:15 - Parse Error: The class "PlatformGraph" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/edge/edges/edge_type.gd:32 - Parse Error: The identifier "Sc" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/edge/edges/edge_type.gd:32 - Parse Error: The identifier "Sc" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/edge/edges/edge_type.gd:32 - Parse Error: The identifier "Sc" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/platform_graph_inspector/inspector_item_controllers/inspector_item_controller.gd:5 - Parse Error: Expected a constant expression. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/widgets/centered_panel.gd:3 - Parse Error: No class icon found at: res://addons/scaffolder/assets/images/editor_icons/centered_panel.png modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/character/action/character_action_handler.gd:28 - Parse Error: The identifier "Sc" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/character/action/character_action_state.gd:190 - Parse Error: The identifier "Sc" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/character/action/character_action_state.gd:190 - Parse Error: The identifier "Sc" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/character/action/character_action_source.gd:41 - Parse Error: The class "CharacterActionState" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/character/action/character_action_state.gd:190 - Parse Error: The identifier "Sc" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/character/action/character_action_type.gd:62 - Parse Error: The identifier "Sc" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/widgets/scaffolder_texture_button.gd:3 - Parse Error: No class icon found at: res://addons/scaffolder/assets/images/editor_icons/scaffolder_texture_button.png modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/widgets/scaffolder_label.gd:3 - Parse Error: No class icon found at: res://addons/scaffolder/assets/images/editor_icons/scaffolder_label.png modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/control_row_list/control_row.gd:21 - Parse Error: The class "ScaffolderTextureButton" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/control_row_list/checkbox_control_row.gd:73 - Parse Error: The class "ControlRow" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/control_rows/character_annotator_control_row.gd:34 - Parse Error: The class "AnnotatorType" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/widgets/scaffolder_texture_button.gd:3 - Parse Error: No class icon found at: res://addons/scaffolder/assets/images/editor_icons/scaffolder_texture_button.png modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/widgets/scaffolder_label.gd:3 - Parse Error: No class icon found at: res://addons/scaffolder/assets/images/editor_icons/scaffolder_label.png modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/control_row_list/control_row.gd:21 - Parse Error: The class "ScaffolderTextureButton" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/control_row_list/checkbox_control_row.gd:73 - Parse Error: The class "ControlRow" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/widgets/scaffolder_texture_button.gd:3 - Parse Error: No class icon found at: res://addons/scaffolder/assets/images/editor_icons/scaffolder_texture_button.png modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/widgets/scaffolder_label.gd:3 - Parse Error: No class icon found at: res://addons/scaffolder/assets/images/editor_icons/scaffolder_label.png modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/control_row_list/control_row.gd:21 - Parse Error: The class "ScaffolderTextureButton" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/data/scaffolder_log.gd:15 - Parse Error: The identifier "Sc" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/character/character_log_type.gd:61 - Parse Error: The class "ScaffolderLog" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/surface/surface_side.gd:26 - Parse Error: The identifier "Sc" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/surface/surface.gd:207 - Parse Error: The class "SurfaceSide" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/surface/position_along_surface.gd:36 - Parse Error: The class "Surface" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/character/character_navigation_state.gd:69 - Parse Error: The class "PositionAlongSurface" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/widgets/scaffolder_texture_button.gd:3 - Parse Error: No class icon found at: res://addons/scaffolder/assets/images/editor_icons/scaffolder_texture_button.png modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/widgets/scaffolder_label.gd:3 - Parse Error: No class icon found at: res://addons/scaffolder/assets/images/editor_icons/scaffolder_label.png modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/control_row_list/control_row.gd:21 - Parse Error: The class "ScaffolderTextureButton" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/control_row_list/checkbox_control_row.gd:73 - Parse Error: The class "ControlRow" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/control_rows/character_position_annotator_control_row.gd:34 - Parse Error: The class "AnnotatorType" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/widgets/scaffolder_texture_button.gd:3 - Parse Error: No class icon found at: res://addons/scaffolder/assets/images/editor_icons/scaffolder_texture_button.png modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/widgets/scaffolder_label.gd:3 - Parse Error: No class icon found at: res://addons/scaffolder/assets/images/editor_icons/scaffolder_label.png modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/control_row_list/control_row.gd:21 - Parse Error: The class "ScaffolderTextureButton" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/control_row_list/checkbox_control_row.gd:73 - Parse Error: The class "ControlRow" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/widgets/scaffolder_texture_button.gd:3 - Parse Error: No class icon found at: res://addons/scaffolder/assets/images/editor_icons/scaffolder_texture_button.png modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/widgets/scaffolder_label.gd:3 - Parse Error: No class icon found at: res://addons/scaffolder/assets/images/editor_icons/scaffolder_label.png modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/control_row_list/control_row.gd:21 - Parse Error: The class "ScaffolderTextureButton" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/character/scaffolder_character_animator.gd:3 - Parse Error: No class icon found at: res://addons/scaffolder/assets/images/editor_icons/scaffolder_character_animator.png modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/utils/time/scaffolder_tween.gd:19 - Parse Error: The identifier "Sc" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/character/character_prediction.gd:6 - Parse Error: The class "ScaffolderCharacterAnimator" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/config/scaffolder_colors.gd:147 - Parse Error: The identifier "Sc" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/annotators/character_annotators/character_surface_annotator.gd:5 - Parse Error: Expected a constant expression. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/character/scaffolder_character.gd:3 - Parse Error: No class icon found at: res://addons/scaffolder/assets/images/editor_icons/scaffolder_character.png modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/character/character_surface_state.gd:143 - Parse Error: The class "ScaffolderCharacter" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/character/surfacer_character.gd:3 - Parse Error: No class icon found at: res://addons/scaffolder/assets/images/editor_icons/scaffolder_character.png modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/annotators/character_annotators/character_tile_annotator.gd:10 - Parse Error: The class "SurfacerCharacter" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/widgets/scaffolder_texture_button.gd:3 - Parse Error: No class icon found at: res://addons/scaffolder/assets/images/editor_icons/scaffolder_texture_button.png modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/widgets/scaffolder_label.gd:3 - Parse Error: No class icon found at: res://addons/scaffolder/assets/images/editor_icons/scaffolder_label.png modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/control_row_list/control_row.gd:21 - Parse Error: The class "ScaffolderTextureButton" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/control_row_list/checkbox_control_row.gd:73 - Parse Error: The class "ControlRow" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/widgets/scaffolder_texture_button.gd:3 - Parse Error: No class icon found at: res://addons/scaffolder/assets/images/editor_icons/scaffolder_texture_button.png modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/widgets/scaffolder_label.gd:3 - Parse Error: No class icon found at: res://addons/scaffolder/assets/images/editor_icons/scaffolder_label.png modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/control_row_list/control_row.gd:21 - Parse Error: The class "ScaffolderTextureButton" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/character/surfacer_character.gd:3 - Parse Error: No class icon found at: res://addons/scaffolder/assets/images/editor_icons/scaffolder_character.png modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/character/choreographer.gd:78 - Parse Error: The class "SurfacerCharacter" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/surface/surface_side.gd:26 - Parse Error: The identifier "Sc" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/surface/surface.gd:207 - Parse Error: The class "SurfaceSide" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/surface/position_along_surface.gd:36 - Parse Error: The class "Surface" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/character/behaviors/choreography_behavior.gd:13 - Parse Error: The class "PositionAlongSurface" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/character/behaviors/climb_adjacent_surfaces_behavior.gd:3 - Parse Error: No class icon found at: res://addons/surfacer/assets/images/editor_icons/climb_adjacent_surfaces_behavior.png modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/edge/edges/edge_type.gd:32 - Parse Error: The identifier "Sc" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/edge/models/movement_parameters.gd:3 - Parse Error: No class icon found at: res://addons/surfacer/assets/images/editor_icons/movement_params.png modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/surface/surface_side.gd:26 - Parse Error: The identifier "Sc" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/surface/surface.gd:207 - Parse Error: The class "SurfaceSide" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/surfaces_tile_map.gd:3 - Parse Error: No class icon found at: res://addons/surfacer/assets/images/editor_icons/surfaces_tile_map.png modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/surface/surface_store.gd:43 - Parse Error: The class "Surface" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/edge/models/collision_calc_params.gd:14 - Parse Error: The class "MovementParameters" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/surface/surface_side.gd:26 - Parse Error: The identifier "Sc" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/surface/surface.gd:207 - Parse Error: The class "SurfaceSide" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/surface/position_along_surface.gd:36 - Parse Error: The class "Surface" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/surface/surface_side.gd:26 - Parse Error: The identifier "Sc" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/surface/surface.gd:207 - Parse Error: The class "SurfaceSide" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/surface/position_along_surface.gd:36 - Parse Error: The class "Surface" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/surface/surface_side.gd:26 - Parse Error: The identifier "Sc" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/surface/surface.gd:207 - Parse Error: The class "SurfaceSide" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/edge/models/waypoint.gd:105 - Parse Error: The class "Surface" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/surface/surface_side.gd:26 - Parse Error: The identifier "Sc" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/surface/surface.gd:207 - Parse Error: The class "SurfaceSide" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/edge/models/waypoint.gd:105 - Parse Error: The class "Surface" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/edge/models/edge_calc_params.gd:50 - Parse Error: The class "CollisionCalcParams" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/edge/models/edge_calc_result_type.gd:46 - Parse Error: The identifier "Sc" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/edge/models/edge_calc_result_metadata.gd:42 - Parse Error: The class "EdgeCalcResultType" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/edge/models/movement_parameters.gd:3 - Parse Error: No class icon found at: res://addons/surfacer/assets/images/editor_icons/movement_params.png modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/surface/surface_side.gd:26 - Parse Error: The identifier "Sc" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/surface/surface.gd:207 - Parse Error: The class "SurfaceSide" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/surfaces_tile_map.gd:3 - Parse Error: No class icon found at: res://addons/surfacer/assets/images/editor_icons/surfaces_tile_map.png modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/surface/surface_store.gd:43 - Parse Error: The class "Surface" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/edge/models/collision_calc_params.gd:14 - Parse Error: The class "MovementParameters" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/surface/surface_side.gd:26 - Parse Error: The identifier "Sc" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/surface/surface.gd:207 - Parse Error: The class "SurfaceSide" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/surface/position_along_surface.gd:36 - Parse Error: The class "Surface" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/surface/surface_side.gd:26 - Parse Error: The identifier "Sc" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/surface/surface.gd:207 - Parse Error: The class "SurfaceSide" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/surface/position_along_surface.gd:36 - Parse Error: The class "Surface" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/edge/calculators/edge_calculator.gd:105 - Parse Error: The class "EdgeCalcParams" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/edge/calculators/climb_to_adjacent_surface_calculator.gd:6 - Parse Error: Expected a constant expression. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/edge/models/movement_parameters.gd:3 - Parse Error: No class icon found at: res://addons/surfacer/assets/images/editor_icons/movement_params.png modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/surface/surface_side.gd:26 - Parse Error: The identifier "Sc" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/surface/surface.gd:207 - Parse Error: The class "SurfaceSide" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/surfaces_tile_map.gd:3 - Parse Error: No class icon found at: res://addons/surfacer/assets/images/editor_icons/surfaces_tile_map.png modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/surface/surface_store.gd:43 - Parse Error: The class "Surface" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/edge/models/collision_calc_params.gd:14 - Parse Error: The class "MovementParameters" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/surface/surface_side.gd:26 - Parse Error: The identifier "Sc" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/surface/surface.gd:207 - Parse Error: The class "SurfaceSide" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/surface/position_along_surface.gd:36 - Parse Error: The class "Surface" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/surface/surface_side.gd:26 - Parse Error: The identifier "Sc" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/surface/surface.gd:207 - Parse Error: The class "SurfaceSide" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/surface/position_along_surface.gd:36 - Parse Error: The class "Surface" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/surface/surface_side.gd:26 - Parse Error: The identifier "Sc" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/surface/surface.gd:207 - Parse Error: The class "SurfaceSide" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/edge/models/waypoint.gd:105 - Parse Error: The class "Surface" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/surface/surface_side.gd:26 - Parse Error: The identifier "Sc" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/surface/surface.gd:207 - Parse Error: The class "SurfaceSide" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/edge/models/waypoint.gd:105 - Parse Error: The class "Surface" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/edge/models/edge_calc_params.gd:50 - Parse Error: The class "CollisionCalcParams" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/edge/models/edge_calc_result_type.gd:46 - Parse Error: The identifier "Sc" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/edge/models/edge_calc_result_metadata.gd:42 - Parse Error: The class "EdgeCalcResultType" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/edge/models/movement_parameters.gd:3 - Parse Error: No class icon found at: res://addons/surfacer/assets/images/editor_icons/movement_params.png modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/surface/surface_side.gd:26 - Parse Error: The identifier "Sc" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/surface/surface.gd:207 - Parse Error: The class "SurfaceSide" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/surfaces_tile_map.gd:3 - Parse Error: No class icon found at: res://addons/surfacer/assets/images/editor_icons/surfaces_tile_map.png modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/surface/surface_store.gd:43 - Parse Error: The class "Surface" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/edge/models/collision_calc_params.gd:14 - Parse Error: The class "MovementParameters" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/surface/surface_side.gd:26 - Parse Error: The identifier "Sc" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/surface/surface.gd:207 - Parse Error: The class "SurfaceSide" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/surface/position_along_surface.gd:36 - Parse Error: The class "Surface" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/surface/surface_side.gd:26 - Parse Error: The identifier "Sc" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/surface/surface.gd:207 - Parse Error: The class "SurfaceSide" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/surface/position_along_surface.gd:36 - Parse Error: The class "Surface" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/edge/calculators/edge_calculator.gd:105 - Parse Error: The class "EdgeCalcParams" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/edge/edges/edge_type.gd:32 - Parse Error: The identifier "Sc" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/surface/surface_side.gd:26 - Parse Error: The identifier "Sc" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/surface/surface.gd:207 - Parse Error: The class "SurfaceSide" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/surface/position_along_surface.gd:36 - Parse Error: The class "Surface" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/surface/surface_side.gd:26 - Parse Error: The identifier "Sc" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/surface/surface.gd:207 - Parse Error: The class "SurfaceSide" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/surface/position_along_surface.gd:36 - Parse Error: The class "Surface" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/edge/models/edge_attempt.gd:25 - Parse Error: The class "PositionAlongSurface" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/surface/surface_side.gd:26 - Parse Error: The identifier "Sc" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/surface/surface.gd:207 - Parse Error: The class "SurfaceSide" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/surface/position_along_surface.gd:36 - Parse Error: The class "Surface" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/edge/edges/edge.gd:559 - Parse Error: The class "PositionAlongSurface" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/edge/edges/climb_to_adjacent_surface_edge.gd:18 - Parse Error: Expected a constant expression. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/surface/surface_side.gd:26 - Parse Error: The identifier "Sc" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/surface/surface.gd:207 - Parse Error: The class "SurfaceSide" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/surface/position_along_surface.gd:36 - Parse Error: The class "Surface" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/surface/surface_side.gd:26 - Parse Error: The identifier "Sc" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/surface/surface.gd:207 - Parse Error: The class "SurfaceSide" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/surface/position_along_surface.gd:36 - Parse Error: The class "Surface" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/edge/models/edge_attempt.gd:25 - Parse Error: The class "PositionAlongSurface" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/surface/surface_side.gd:26 - Parse Error: The identifier "Sc" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/surface/surface.gd:207 - Parse Error: The class "SurfaceSide" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/surface/position_along_surface.gd:36 - Parse Error: The class "Surface" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/edge/edges/edge.gd:559 - Parse Error: The class "PositionAlongSurface" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/surface/surface_side.gd:26 - Parse Error: The identifier "Sc" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/surface/surface.gd:207 - Parse Error: The class "SurfaceSide" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/surface/position_along_surface.gd:36 - Parse Error: The class "Surface" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/surface/surface_side.gd:26 - Parse Error: The identifier "Sc" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/surface/surface.gd:207 - Parse Error: The class "SurfaceSide" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/surface/position_along_surface.gd:36 - Parse Error: The class "Surface" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/edge/models/edge_attempt.gd:25 - Parse Error: The class "PositionAlongSurface" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/character/behaviors/collide_behavior.gd:3 - Parse Error: No class icon found at: res://addons/surfacer/assets/images/editor_icons/collide_behavior.png modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/edge/models/movement_parameters.gd:3 - Parse Error: No class icon found at: res://addons/surfacer/assets/images/editor_icons/movement_params.png modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/surface/surface_side.gd:26 - Parse Error: The identifier "Sc" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/surface/surface.gd:207 - Parse Error: The class "SurfaceSide" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/surfaces_tile_map.gd:3 - Parse Error: No class icon found at: res://addons/surfacer/assets/images/editor_icons/surfaces_tile_map.png modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/surface/surface_store.gd:43 - Parse Error: The class "Surface" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/edge/models/collision_calc_params.gd:14 - Parse Error: The class "MovementParameters" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/surface/surface_side.gd:26 - Parse Error: The identifier "Sc" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/surface/surface.gd:207 - Parse Error: The class "SurfaceSide" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/edge/models/surface_collision.gd:6 - Parse Error: The class "Surface" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/edge/models/collision_calc_result_metadata.gd:63 - Parse Error: The class "SurfaceCollision" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/surface/surface_side.gd:26 - Parse Error: The identifier "Sc" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/surface/surface.gd:207 - Parse Error: The class "SurfaceSide" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/edge/models/surface_collision.gd:6 - Parse Error: The class "Surface" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/surface/surface_side.gd:26 - Parse Error: The identifier "Sc" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/surface/surface.gd:207 - Parse Error: The class "SurfaceSide" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/surface/position_along_surface.gd:36 - Parse Error: The class "Surface" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/surface/surface_side.gd:26 - Parse Error: The identifier "Sc" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/surface/surface.gd:207 - Parse Error: The class "SurfaceSide" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/surface/position_along_surface.gd:36 - Parse Error: The class "Surface" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/surface/surface_side.gd:26 - Parse Error: The identifier "Sc" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/surface/surface.gd:207 - Parse Error: The class "SurfaceSide" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/edge/models/waypoint.gd:105 - Parse Error: The class "Surface" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/surface/surface_side.gd:26 - Parse Error: The identifier "Sc" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/surface/surface.gd:207 - Parse Error: The class "SurfaceSide" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/edge/models/waypoint.gd:105 - Parse Error: The class "Surface" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/edge/models/edge_calc_params.gd:50 - Parse Error: The class "CollisionCalcParams" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/edge/models/edge_instruction.gd:20 - Parse Error: The identifier "Sc" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/edge/models/edge_instruction.gd:20 - Parse Error: The identifier "Sc" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/edge/models/edge_instructions.gd:118 - Parse Error: The class "EdgeInstruction" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/edge/models/edge_instruction.gd:20 - Parse Error: The identifier "Sc" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/edge/models/edge_trajectory.gd:33 - Parse Error: The class "EdgeInstruction" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/edge/utils/collision_check_utils.gd:13 - Parse Error: The class "SurfaceCollision" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/surface/surface_side.gd:26 - Parse Error: The identifier "Sc" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/edge/models/collision_surface_result.gd:27 - Parse Error: The class "SurfaceSide" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/annotators/color_params/color_params_type.gd:20 - Parse Error: The identifier "Sc" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/annotators/color_params/color_params.gd:15 - Parse Error: The class "ColorParamsType" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/annotators/color_params/color_params_type.gd:20 - Parse Error: The identifier "Sc" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/annotators/color_params/hsv_range_color_params.gd:5 - Parse Error: Expected a constant expression. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/annotators/color_params/color_params_factory.gd:5 - Parse Error: The class "HsvRangeColorParams" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/annotators/color_params/color_params_type.gd:20 - Parse Error: The identifier "Sc" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/screen.gd:3 - Parse Error: No class icon found at: res://addons/scaffolder/assets/images/editor_icons/scaffolder_panel_container.png modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/widgets/scaffolder_button.gd:3 - Parse Error: No class icon found at: res://addons/scaffolder/assets/images/editor_icons/scaffolder_button.png modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/screens/confirm_data_deletion_screen_local.gd:15 - Parse Error: The class "ScaffolderButton" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/screen.gd:3 - Parse Error: No class icon found at: res://addons/scaffolder/assets/images/editor_icons/scaffolder_panel_container.png modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/screen.gd:3 - Parse Error: No class icon found at: res://addons/scaffolder/assets/images/editor_icons/scaffolder_panel_container.png modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/widgets/scaffolder_button.gd:3 - Parse Error: No class icon found at: res://addons/scaffolder/assets/images/editor_icons/scaffolder_button.png modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/screens/confirm_data_deletion_screen_with_analytics.gd:19 - Parse Error: The class "ScaffolderButton" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/screen.gd:3 - Parse Error: No class icon found at: res://addons/scaffolder/assets/images/editor_icons/scaffolder_panel_container.png modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/legend/legend_items/legend_item_type.gd:53 - Parse Error: The identifier "Sc" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/legend/legend_items/legend_item_type.gd:53 - Parse Error: The identifier "Sc" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/legend/legend_items/legend_item.gd:64 - Parse Error: The class "LegendItemType" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/legend/legend_items/valid_edge_trajectory_legend_item.gd:22 - Parse Error: The class "ColorParams" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/legend/legend_items/continuous_edge_trajectory_legend_item.gd:5 - Parse Error: Expected a constant expression. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/legend/legend_items/legend_item_type.gd:53 - Parse Error: The identifier "Sc" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/legend/legend_items/legend_item.gd:64 - Parse Error: The class "LegendItemType" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/legend/legend_items/valid_edge_trajectory_legend_item.gd:22 - Parse Error: The class "ColorParams" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/legend/legend_items/legend_item_type.gd:53 - Parse Error: The identifier "Sc" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/legend/legend_items/legend_item.gd:64 - Parse Error: The class "LegendItemType" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/widgets/scaffolder_texture_button.gd:3 - Parse Error: No class icon found at: res://addons/scaffolder/assets/images/editor_icons/scaffolder_texture_button.png modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/widgets/scaffolder_label.gd:3 - Parse Error: No class icon found at: res://addons/scaffolder/assets/images/editor_icons/scaffolder_label.png modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/control_row_list/control_row.gd:21 - Parse Error: The class "ScaffolderTextureButton" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/data/crash_reporter.gd:35 - Parse Error: The identifier "Sc" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/edge/models/movement_parameters.gd:3 - Parse Error: No class icon found at: res://addons/surfacer/assets/images/editor_icons/movement_params.png modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/surface/surface_side.gd:26 - Parse Error: The identifier "Sc" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/surface/surface.gd:207 - Parse Error: The class "SurfaceSide" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/surfaces_tile_map.gd:3 - Parse Error: No class icon found at: res://addons/surfacer/assets/images/editor_icons/surfaces_tile_map.png modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/surface/surface_store.gd:43 - Parse Error: The class "Surface" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/character/crash_test_dummy.gd:9 - Parse Error: The class "MovementParameters" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/screen.gd:3 - Parse Error: No class icon found at: res://addons/scaffolder/assets/images/editor_icons/scaffolder_panel_container.png modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/widgets/scaffolder_button.gd:3 - Parse Error: No class icon found at: res://addons/scaffolder/assets/images/editor_icons/scaffolder_button.png modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/screens/data_agreement_screen.gd:13 - Parse Error: The class "ScaffolderButton" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/screen.gd:3 - Parse Error: No class icon found at: res://addons/scaffolder/assets/images/editor_icons/scaffolder_panel_container.png modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/level/surfacer_level.gd:3 - Parse Error: No class icon found at: res://addons/scaffolder/assets/images/editor_icons/scaffolder_level.png modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/level/debug_level.gd:9 - Parse Error: The identifier "Sc" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/level/surfacer_level.gd:3 - Parse Error: No class icon found at: res://addons/scaffolder/assets/images/editor_icons/scaffolder_level.png modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/debug_panel.gd:3 - Parse Error: No class icon found at: res://addons/scaffolder/assets/images/editor_icons/debug_panel.png modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/control_rows/settings/debug_panel_control_row.gd:23 - Parse Error: The identifier "Sc" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/control_rows/settings/debug_time_display_control_row.gd:17 - Parse Error: The identifier "Sc" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR Cannot open file 'res://addons/scaffolder/assets/fonts/roboto_font_xxs.tres'. Failed loading resource: res://addons/scaffolder/assets/fonts/roboto_font_xxs.tres. Make sure resources have been imported by opening the project in the editor at least once. res://src/config/default_app_manifest.gd:151 - Parse Error: Can't preload resource at path: res://addons/scaffolder/assets/fonts/roboto_font_xxs.tres modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/character/behaviors/default_behavior.gd:53 - Parse Error: The class "BehaviorMoveResult" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/platform_graph_inspector/inspector_item_controllers/inspector_item_type.gd:104 - Parse Error: The identifier "Sc" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/edge/edges/edge_type.gd:32 - Parse Error: The identifier "Sc" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/edge/edges/edge_type.gd:32 - Parse Error: The identifier "Sc" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/edge/edges/edge_type.gd:32 - Parse Error: The identifier "Sc" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/platform_graph_inspector/inspector_item_controllers/inspector_item_controller.gd:5 - Parse Error: Expected a constant expression. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/platform_graph_inspector/inspector_item_controllers/description_item_controller.gd:5 - Parse Error: Expected a constant expression. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/edge/edges/edge_type.gd:32 - Parse Error: The identifier "Sc" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/edge/edges/edge_type.gd:32 - Parse Error: The identifier "Sc" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/edge/edges/edge_type.gd:32 - Parse Error: The identifier "Sc" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/platform_graph_inspector/inspector_item_controllers/inspector_item_controller.gd:5 - Parse Error: Expected a constant expression. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/legend/legend_items/legend_item_type.gd:53 - Parse Error: The identifier "Sc" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/legend/legend_items/legend_item_type.gd:53 - Parse Error: The identifier "Sc" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/legend/legend_items/legend_item.gd:64 - Parse Error: The class "LegendItemType" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/legend/legend_items/destination_legend_item.gd:5 - Parse Error: Expected a constant expression. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/legend/legend_items/legend_item_type.gd:53 - Parse Error: The identifier "Sc" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/legend/legend_items/legend_item.gd:64 - Parse Error: The class "LegendItemType" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/annotators/annotation_elements/surface_annotation_element.gd:5 - Parse Error: Expected a constant expression. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/annotators/annotation_elements/destination_surface_annotation_element.gd:5 - Parse Error: Expected a constant expression. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/annotators/annotation_elements/surface_annotation_element.gd:5 - Parse Error: Expected a constant expression. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/platform_graph_inspector/inspector_item_controllers/inspector_item_type.gd:104 - Parse Error: The identifier "Sc" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/edge/edges/edge_type.gd:32 - Parse Error: The identifier "Sc" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/edge/edges/edge_type.gd:32 - Parse Error: The identifier "Sc" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/edge/edges/edge_type.gd:32 - Parse Error: The identifier "Sc" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/platform_graph_inspector/inspector_item_controllers/inspector_item_controller.gd:5 - Parse Error: Expected a constant expression. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/platform_graph_inspector/inspector_item_controllers/surfaces_group/destination_surface_item_controller.gd:5 - Parse Error: Expected a constant expression. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/edge/edges/edge_type.gd:32 - Parse Error: The identifier "Sc" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/edge/edges/edge_type.gd:32 - Parse Error: The identifier "Sc" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/edge/edges/edge_type.gd:32 - Parse Error: The identifier "Sc" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/platform_graph_inspector/inspector_item_controllers/inspector_item_controller.gd:5 - Parse Error: Expected a constant expression. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/legend/legend_items/legend_item_type.gd:53 - Parse Error: The identifier "Sc" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/legend/legend_items/legend_item_type.gd:53 - Parse Error: The identifier "Sc" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/legend/legend_items/legend_item_type.gd:53 - Parse Error: The identifier "Sc" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/legend/legend_items/legend_item.gd:64 - Parse Error: The class "LegendItemType" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/legend/legend_items/surface_legend_item.gd:5 - Parse Error: Expected a constant expression. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/legend/legend_items/destination_surface_legend_item.gd:5 - Parse Error: Expected a constant expression. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/legend/legend_items/legend_item_type.gd:53 - Parse Error: The identifier "Sc" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/legend/legend_items/legend_item_type.gd:53 - Parse Error: The identifier "Sc" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/legend/legend_items/legend_item.gd:64 - Parse Error: The class "LegendItemType" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/legend/legend_items/surface_legend_item.gd:5 - Parse Error: Expected a constant expression. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/legend/legend_items/legend_item_type.gd:53 - Parse Error: The identifier "Sc" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/legend/legend_items/legend_item.gd:64 - Parse Error: The class "LegendItemType" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/screen.gd:3 - Parse Error: No class icon found at: res://addons/scaffolder/assets/images/editor_icons/scaffolder_panel_container.png modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/widgets/scaffolder_texture_rect.gd:3 - Parse Error: No class icon found at: res://addons/scaffolder/assets/images/editor_icons/scaffolder_texture_rect.png modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/screens/splash_screen.gd:9 - Parse Error: The class "ScaffolderTextureRect" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/screen.gd:3 - Parse Error: No class icon found at: res://addons/scaffolder/assets/images/editor_icons/scaffolder_panel_container.png modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/utils/device_utils.gd:54 - Parse Error: The identifier "Sc" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/legend/legend_items/legend_item_type.gd:53 - Parse Error: The identifier "Sc" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/legend/legend_items/legend_item_type.gd:53 - Parse Error: The identifier "Sc" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/legend/legend_items/legend_item.gd:64 - Parse Error: The class "LegendItemType" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/legend/legend_items/valid_edge_trajectory_legend_item.gd:22 - Parse Error: The class "ColorParams" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/legend/legend_items/discrete_edge_trajectory_legend_item.gd:5 - Parse Error: Expected a constant expression. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/legend/legend_items/legend_item_type.gd:53 - Parse Error: The identifier "Sc" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/legend/legend_items/legend_item.gd:64 - Parse Error: The class "LegendItemType" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/legend/legend_items/valid_edge_trajectory_legend_item.gd:22 - Parse Error: The class "ColorParams" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/legend/legend_items/legend_item_type.gd:53 - Parse Error: The identifier "Sc" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/legend/legend_items/legend_item.gd:64 - Parse Error: The class "LegendItemType" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/control_row_list/dropdown_control_row.gd:71 - Parse Error: The class "ControlRow" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/platform_graph_inspector/inspector_item_controllers/inspector_item_type.gd:104 - Parse Error: The identifier "Sc" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/edge/edges/edge_type.gd:32 - Parse Error: The identifier "Sc" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/edge/edges/edge_type.gd:32 - Parse Error: The identifier "Sc" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/edge/edges/edge_type.gd:32 - Parse Error: The identifier "Sc" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/platform_graph_inspector/inspector_item_controllers/inspector_item_controller.gd:5 - Parse Error: Expected a constant expression. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/platform_graph_inspector/inspector_item_controllers/dummy_controller.gd:9 - Parse Error: Expected a constant expression. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/edge/edges/edge_type.gd:32 - Parse Error: The identifier "Sc" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/edge/edges/edge_type.gd:32 - Parse Error: The identifier "Sc" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/edge/edges/edge_type.gd:32 - Parse Error: The identifier "Sc" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/platform_graph_inspector/inspector_item_controllers/inspector_item_controller.gd:5 - Parse Error: Expected a constant expression. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/surface/surface_side.gd:26 - Parse Error: The identifier "Sc" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/surface/surface.gd:207 - Parse Error: The class "SurfaceSide" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/surface/position_along_surface.gd:36 - Parse Error: The class "Surface" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/surface/surface_side.gd:26 - Parse Error: The identifier "Sc" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/surface/surface.gd:207 - Parse Error: The class "SurfaceSide" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/surface/position_along_surface.gd:36 - Parse Error: The class "Surface" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/edge/models/edge_attempt.gd:25 - Parse Error: The class "PositionAlongSurface" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/surface/surface_side.gd:26 - Parse Error: The identifier "Sc" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/surface/surface.gd:207 - Parse Error: The class "SurfaceSide" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/surface/position_along_surface.gd:36 - Parse Error: The class "Surface" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/edge/edges/edge.gd:559 - Parse Error: The class "PositionAlongSurface" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/surface/surface_side.gd:26 - Parse Error: The identifier "Sc" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/surface/surface.gd:207 - Parse Error: The class "SurfaceSide" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/surface/position_along_surface.gd:36 - Parse Error: The class "Surface" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/surface/surface_side.gd:26 - Parse Error: The identifier "Sc" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/surface/surface.gd:207 - Parse Error: The class "SurfaceSide" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/surface/position_along_surface.gd:36 - Parse Error: The class "Surface" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/edge/models/edge_attempt.gd:25 - Parse Error: The class "PositionAlongSurface" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/annotators/annotation_elements/edge_annotation_element.gd:5 - Parse Error: Expected a constant expression. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/surface/surface_side.gd:26 - Parse Error: The identifier "Sc" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/surface/surface.gd:207 - Parse Error: The class "SurfaceSide" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/surface/position_along_surface.gd:36 - Parse Error: The class "Surface" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/surface/surface_side.gd:26 - Parse Error: The identifier "Sc" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/surface/surface.gd:207 - Parse Error: The class "SurfaceSide" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/surface/position_along_surface.gd:36 - Parse Error: The class "Surface" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/edge/models/edge_attempt.gd:25 - Parse Error: The class "PositionAlongSurface" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/edge/edges/edge_type.gd:32 - Parse Error: The identifier "Sc" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/edge/edges/edge_type.gd:32 - Parse Error: The identifier "Sc" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/edge/edges/edge_type.gd:32 - Parse Error: The identifier "Sc" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/platform_graph_inspector/inspector_item_controllers/inspector_item_controller.gd:5 - Parse Error: Expected a constant expression. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/edge/models/edge_calc_result_type.gd:46 - Parse Error: The identifier "Sc" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/edge/models/edge_calc_result_metadata.gd:42 - Parse Error: The class "EdgeCalcResultType" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/edge/models/movement_parameters.gd:3 - Parse Error: No class icon found at: res://addons/surfacer/assets/images/editor_icons/movement_params.png modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/surface/surface_side.gd:26 - Parse Error: The identifier "Sc" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/surface/surface.gd:207 - Parse Error: The class "SurfaceSide" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/surface/position_along_surface.gd:36 - Parse Error: The class "Surface" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/surface/surface_side.gd:26 - Parse Error: The identifier "Sc" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/surface/surface.gd:207 - Parse Error: The class "SurfaceSide" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/surface/position_along_surface.gd:36 - Parse Error: The class "Surface" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/platform_graph.gd:373 - Parse Error: The class "MovementParameters" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/platform_graph_inspector/inspector_item_controllers/edge_attempt_item_controller.gd:123 - Parse Error: The class "EdgeCalcResultMetadata" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/edge/edges/edge_type.gd:32 - Parse Error: The identifier "Sc" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/edge/edges/edge_type.gd:32 - Parse Error: The identifier "Sc" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/edge/edges/edge_type.gd:32 - Parse Error: The identifier "Sc" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/platform_graph_inspector/inspector_item_controllers/inspector_item_controller.gd:5 - Parse Error: Expected a constant expression. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/surface/surface_side.gd:26 - Parse Error: The identifier "Sc" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/surface/surface.gd:207 - Parse Error: The class "SurfaceSide" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/surface/position_along_surface.gd:36 - Parse Error: The class "Surface" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/surface/surface_side.gd:26 - Parse Error: The identifier "Sc" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/surface/surface.gd:207 - Parse Error: The class "SurfaceSide" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/surface/position_along_surface.gd:36 - Parse Error: The class "Surface" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/surface/surface_side.gd:26 - Parse Error: The identifier "Sc" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/surface/surface.gd:207 - Parse Error: The class "SurfaceSide" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/edge/models/waypoint.gd:105 - Parse Error: The class "Surface" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/surface/surface_side.gd:26 - Parse Error: The identifier "Sc" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/surface/surface.gd:207 - Parse Error: The class "SurfaceSide" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/edge/models/waypoint.gd:105 - Parse Error: The class "Surface" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/edge/models/edge_calc_params.gd:50 - Parse Error: The class "CollisionCalcParams" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/platform_graph_inspector/inspector_item_controllers/inspector_item_type.gd:104 - Parse Error: The identifier "Sc" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/edge/edges/edge_type.gd:32 - Parse Error: The identifier "Sc" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/edge/edges/edge_type.gd:32 - Parse Error: The identifier "Sc" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/edge/edges/edge_type.gd:32 - Parse Error: The identifier "Sc" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/platform_graph_inspector/inspector_item_controllers/inspector_item_controller.gd:5 - Parse Error: Expected a constant expression. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/platform_graph_inspector/inspector_item_controllers/edge_calc_profiler_group_item_controller.gd:5 - Parse Error: Expected a constant expression. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/edge/edges/edge_type.gd:32 - Parse Error: The identifier "Sc" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/edge/edges/edge_type.gd:32 - Parse Error: The identifier "Sc" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/edge/edges/edge_type.gd:32 - Parse Error: The identifier "Sc" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/platform_graph_inspector/inspector_item_controllers/inspector_item_controller.gd:5 - Parse Error: Expected a constant expression. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/edge/models/edge_calc_result.gd:25 - Parse Error: The class "EdgeCalcParams" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/edge/models/edge_calc_result_type.gd:46 - Parse Error: The identifier "Sc" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/edge/models/edge_calc_result_metadata.gd:42 - Parse Error: The class "EdgeCalcResultType" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/platform_graph_inspector/inspector_item_controllers/inspector_item_type.gd:104 - Parse Error: The identifier "Sc" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/edge/edges/edge_type.gd:32 - Parse Error: The identifier "Sc" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/edge/edges/edge_type.gd:32 - Parse Error: The identifier "Sc" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/edge/edges/edge_type.gd:32 - Parse Error: The identifier "Sc" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/platform_graph_inspector/inspector_item_controllers/inspector_item_controller.gd:5 - Parse Error: Expected a constant expression. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/platform_graph_inspector/inspector_item_controllers/edge_calc_result_metadata_item_controller.gd:5 - Parse Error: Expected a constant expression. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/edge/edges/edge_type.gd:32 - Parse Error: The identifier "Sc" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/edge/edges/edge_type.gd:32 - Parse Error: The identifier "Sc" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/edge/edges/edge_type.gd:32 - Parse Error: The identifier "Sc" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/platform_graph_inspector/inspector_item_controllers/inspector_item_controller.gd:5 - Parse Error: Expected a constant expression. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/edge/models/edge_calc_result_type.gd:46 - Parse Error: The identifier "Sc" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/surface/surface_side.gd:26 - Parse Error: The identifier "Sc" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/surface/surface.gd:207 - Parse Error: The class "SurfaceSide" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/surface/position_along_surface.gd:36 - Parse Error: The class "Surface" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/surface/surface_side.gd:26 - Parse Error: The identifier "Sc" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/surface/surface.gd:207 - Parse Error: The class "SurfaceSide" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/surface/position_along_surface.gd:36 - Parse Error: The class "Surface" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/edge/calculators/edge_calculator.gd:105 - Parse Error: The class "EdgeCalcParams" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/edge/edges/edge_from_json_factory.gd:16 - Parse Error: The class "Edge" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/edge/models/edge_instruction.gd:20 - Parse Error: The identifier "Sc" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/edge/models/edge_instructions.gd:118 - Parse Error: The class "EdgeInstruction" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/utils/time/_time_tracker.gd:7 - Parse Error: The identifier "Sc" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/utils/time/time.gd:125 - Parse Error: The class "_TimeTracker" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/edge/utils/edge_instructions_utils.gd:17 - Parse Error: Expected a constant expression. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/annotators/annotation_elements/edge_step_annotation_element.gd:5 - Parse Error: Expected a constant expression. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/surface/surface_side.gd:26 - Parse Error: The identifier "Sc" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/surface/surface.gd:207 - Parse Error: The class "SurfaceSide" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/edge/models/waypoint.gd:105 - Parse Error: The class "Surface" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/surface/surface_side.gd:26 - Parse Error: The identifier "Sc" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/surface/surface.gd:207 - Parse Error: The class "SurfaceSide" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/edge/models/waypoint.gd:105 - Parse Error: The class "Surface" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/edge/models/edge_step_calc_params.gd:17 - Parse Error: The class "Waypoint" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/surface/surface_side.gd:26 - Parse Error: The identifier "Sc" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/surface/surface.gd:207 - Parse Error: The class "SurfaceSide" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/edge/models/waypoint.gd:105 - Parse Error: The class "Surface" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/edge/models/edge_step_calc_result_metadata.gd:29 - Parse Error: The class "EdgeCalcResultMetadata" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/platform_graph_inspector/inspector_item_controllers/inspector_item_type.gd:104 - Parse Error: The identifier "Sc" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/edge/edges/edge_type.gd:32 - Parse Error: The identifier "Sc" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/edge/edges/edge_type.gd:32 - Parse Error: The identifier "Sc" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/edge/edges/edge_type.gd:32 - Parse Error: The identifier "Sc" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/platform_graph_inspector/inspector_item_controllers/inspector_item_controller.gd:5 - Parse Error: Expected a constant expression. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/platform_graph_inspector/inspector_item_controllers/edge_step_calc_result_metadata_item_controller.gd:5 - Parse Error: Expected a constant expression. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/edge/edges/edge_type.gd:32 - Parse Error: The identifier "Sc" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/edge/edges/edge_type.gd:32 - Parse Error: The identifier "Sc" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/edge/edges/edge_type.gd:32 - Parse Error: The identifier "Sc" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/platform_graph_inspector/inspector_item_controllers/inspector_item_controller.gd:5 - Parse Error: Expected a constant expression. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/edge/models/movement_parameters.gd:3 - Parse Error: No class icon found at: res://addons/surfacer/assets/images/editor_icons/movement_params.png modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/surface/surface_side.gd:26 - Parse Error: The identifier "Sc" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/surface/surface.gd:207 - Parse Error: The class "SurfaceSide" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/surface/position_along_surface.gd:36 - Parse Error: The class "Surface" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/surface/surface_side.gd:26 - Parse Error: The identifier "Sc" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/surface/surface.gd:207 - Parse Error: The class "SurfaceSide" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/surface/position_along_surface.gd:36 - Parse Error: The class "Surface" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/platform_graph.gd:373 - Parse Error: The class "MovementParameters" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/platform_graph_inspector/inspector_item_controllers/edge_step_calc_result_metadata_item_controller_factory.gd:8 - Parse Error: The class "EdgeStepCalcResultMetadataItemController" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/edge/models/edge_step_calc_result_type.gd:47 - Parse Error: The identifier "Sc" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/edge/utils/edge_step_utils.gd:16 - Parse Error: The class "EdgeCalcResult" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/edge/models/edge_trajectory.gd:33 - Parse Error: The class "EdgeInstruction" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/edge/utils/edge_trajectory_utils.gd:10 - Parse Error: The class "EdgeTrajectory" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/edge/edges/edge_type.gd:32 - Parse Error: The identifier "Sc" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/platform_graph_inspector/inspector_item_controllers/inspector_item_type.gd:104 - Parse Error: The identifier "Sc" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/platform_graph_inspector/inspector_item_controllers/inspector_item_controller.gd:5 - Parse Error: Expected a constant expression. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/platform_graph_inspector/inspector_item_controllers/edges_group/edge_type_in_edges_group_item_controller.gd:5 - Parse Error: Expected a constant expression. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/platform_graph_inspector/inspector_item_controllers/inspector_item_controller.gd:5 - Parse Error: Expected a constant expression. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/platform_graph_inspector/inspector_item_controllers/inspector_item_type.gd:104 - Parse Error: The identifier "Sc" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/platform_graph_inspector/inspector_item_controllers/inspector_item_controller.gd:5 - Parse Error: Expected a constant expression. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/platform_graph_inspector/inspector_item_controllers/surfaces_group/edge_type_in_surfaces_group_item_controller.gd:5 - Parse Error: Expected a constant expression. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/platform_graph_inspector/inspector_item_controllers/inspector_item_controller.gd:5 - Parse Error: Expected a constant expression. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/platform_graph_inspector/inspector_item_controllers/inspector_item_controller.gd:5 - Parse Error: Expected a constant expression. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/edge/models/movement_parameters.gd:3 - Parse Error: No class icon found at: res://addons/surfacer/assets/images/editor_icons/movement_params.png modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/surface/surface_side.gd:26 - Parse Error: The identifier "Sc" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/surface/surface.gd:207 - Parse Error: The class "SurfaceSide" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/surface/position_along_surface.gd:36 - Parse Error: The class "Surface" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/surface/surface_side.gd:26 - Parse Error: The identifier "Sc" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/surface/surface.gd:207 - Parse Error: The class "SurfaceSide" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/surface/position_along_surface.gd:36 - Parse Error: The class "Surface" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/platform_graph.gd:373 - Parse Error: The class "MovementParameters" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/platform_graph_inspector/inspector_item_controllers/edges_group/edges_filtered_by_result_type_group_item_controller.gd:16 - Parse Error: The class "PlatformGraph" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/platform_graph_inspector/inspector_item_controllers/inspector_item_controller.gd:5 - Parse Error: Expected a constant expression. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/platform_graph_inspector/inspector_item_controllers/inspector_item_type.gd:104 - Parse Error: The identifier "Sc" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/platform_graph_inspector/inspector_item_controllers/inspector_item_controller.gd:5 - Parse Error: Expected a constant expression. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/platform_graph_inspector/inspector_item_controllers/edges_group/edges_group_item_controller.gd:5 - Parse Error: Expected a constant expression. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/platform_graph_inspector/inspector_item_controllers/inspector_item_controller.gd:5 - Parse Error: Expected a constant expression. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/platform_graph_inspector/inspector_item_controllers/inspector_item_type.gd:104 - Parse Error: The identifier "Sc" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/platform_graph_inspector/inspector_item_controllers/edges_group/edges_with_increasing_jump_height_group_item_controller.gd:5 - Parse Error: Expected a constant expression. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/platform_graph_inspector/inspector_item_controllers/inspector_item_controller.gd:5 - Parse Error: Expected a constant expression. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/platform_graph_inspector/inspector_item_controllers/inspector_item_type.gd:104 - Parse Error: The identifier "Sc" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/platform_graph_inspector/inspector_item_controllers/edges_group/edges_with_one_step_group_item_controller.gd:5 - Parse Error: Expected a constant expression. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/platform_graph_inspector/inspector_item_controllers/inspector_item_controller.gd:5 - Parse Error: Expected a constant expression. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/platform_graph_inspector/inspector_item_controllers/inspector_item_type.gd:104 - Parse Error: The identifier "Sc" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/platform_graph_inspector/inspector_item_controllers/edges_group/edges_without_increasing_jump_height_group_item_controller.gd:5 - Parse Error: Expected a constant expression. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/platform_graph_inspector/inspector_item_controllers/inspector_item_controller.gd:5 - Parse Error: Expected a constant expression. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/annotators/element_annotator.gd:9 - Parse Error: The class "AnnotationElement" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/annotators/transient_annotators/transient_annotator.gd:25 - Parse Error: The identifier "Sc" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/annotators/transient_annotators/exclamation_mark_annotator.gd:25 - Parse Error: The identifier "Sc" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/annotators/transient_annotators/transient_annotator.gd:25 - Parse Error: The identifier "Sc" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/surface/surface_side.gd:26 - Parse Error: The identifier "Sc" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/surface/surface.gd:207 - Parse Error: The class "SurfaceSide" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/surface/position_along_surface.gd:36 - Parse Error: The class "Surface" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/surface/surface_side.gd:26 - Parse Error: The identifier "Sc" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/surface/surface.gd:207 - Parse Error: The class "SurfaceSide" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/surface/position_along_surface.gd:36 - Parse Error: The class "Surface" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/edge/models/jump_land_positions.gd:35 - Parse Error: The class "PositionAlongSurface" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/edge/models/failed_edge_attempt.gd:19 - Parse Error: The class "JumpLandPositions" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/annotators/annotation_elements/failed_edge_attempt_annotation_element.gd:5 - Parse Error: Expected a constant expression. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/platform_graph_inspector/inspector_item_controllers/inspector_item_type.gd:104 - Parse Error: The identifier "Sc" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/platform_graph_inspector/inspector_item_controllers/surfaces_group/failed_edge_item_controller.gd:5 - Parse Error: Expected a constant expression. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/platform_graph_inspector/inspector_item_controllers/inspector_item_controller.gd:5 - Parse Error: Expected a constant expression. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/legend/legend_items/legend_item_type.gd:53 - Parse Error: The identifier "Sc" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/legend/legend_items/legend_item_type.gd:53 - Parse Error: The identifier "Sc" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/legend/legend_items/legend_item.gd:64 - Parse Error: The class "LegendItemType" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/legend/legend_items/failed_edge_trajectory_legend_item.gd:5 - Parse Error: Expected a constant expression. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/legend/legend_items/legend_item_type.gd:53 - Parse Error: The identifier "Sc" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/legend/legend_items/legend_item.gd:64 - Parse Error: The class "LegendItemType" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/platform_graph_inspector/inspector_item_controllers/inspector_item_type.gd:104 - Parse Error: The identifier "Sc" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/platform_graph_inspector/inspector_item_controllers/inspector_item_controller.gd:5 - Parse Error: Expected a constant expression. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/platform_graph_inspector/inspector_item_controllers/surfaces_group/failed_edges_group_item_controller.gd:5 - Parse Error: Expected a constant expression. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/platform_graph_inspector/inspector_item_controllers/inspector_item_controller.gd:5 - Parse Error: Expected a constant expression. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/edge/calculators/fall_from_floor_calculator.gd:6 - Parse Error: Expected a constant expression. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/edge/edges/fall_from_floor_edge.gd:13 - Parse Error: Expected a constant expression. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/edge/calculators/fall_from_wall_calculator.gd:6 - Parse Error: Expected a constant expression. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/edge/edges/fall_from_wall_edge.gd:9 - Parse Error: Expected a constant expression. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/surface/surface_side.gd:26 - Parse Error: The identifier "Sc" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/surface/surface.gd:207 - Parse Error: The class "SurfaceSide" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/surface/position_along_surface.gd:36 - Parse Error: The class "Surface" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/edge/utils/fall_movement_utils.gd:16 - Parse Error: The class "CollisionCalcParams" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/annotators/annotation_elements/polyline_annotation_element.gd:16 - Parse Error: The class "ColorParams" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/annotators/annotation_elements/fall_range_with_jump_distance_annotation_element.gd:5 - Parse Error: Expected a constant expression. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/annotators/annotation_elements/polyline_annotation_element.gd:16 - Parse Error: The class "ColorParams" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/legend/legend_items/legend_item_type.gd:53 - Parse Error: The identifier "Sc" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/legend/legend_items/legend_item_type.gd:53 - Parse Error: The identifier "Sc" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/legend/legend_items/legend_item.gd:64 - Parse Error: The class "LegendItemType" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/legend/legend_items/polyline_legend_item.gd:23 - Parse Error: The class "ColorParams" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/legend/legend_items/fall_range_with_jump_distance_legend_item.gd:5 - Parse Error: Expected a constant expression. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/legend/legend_items/legend_item_type.gd:53 - Parse Error: The identifier "Sc" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/legend/legend_items/legend_item.gd:64 - Parse Error: The class "LegendItemType" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/legend/legend_items/polyline_legend_item.gd:23 - Parse Error: The class "ColorParams" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/legend/legend_items/legend_item_type.gd:53 - Parse Error: The identifier "Sc" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/legend/legend_items/legend_item.gd:64 - Parse Error: The class "LegendItemType" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/annotators/annotation_elements/polyline_annotation_element.gd:16 - Parse Error: The class "ColorParams" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/annotators/annotation_elements/fall_range_without_jump_distance_annotation_element.gd:5 - Parse Error: Expected a constant expression. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/annotators/annotation_elements/polyline_annotation_element.gd:16 - Parse Error: The class "ColorParams" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/legend/legend_items/legend_item_type.gd:53 - Parse Error: The identifier "Sc" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/legend/legend_items/legend_item_type.gd:53 - Parse Error: The identifier "Sc" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/legend/legend_items/legend_item.gd:64 - Parse Error: The class "LegendItemType" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/legend/legend_items/polyline_legend_item.gd:23 - Parse Error: The class "ColorParams" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/legend/legend_items/fall_range_without_jump_distance_legend_item.gd:5 - Parse Error: Expected a constant expression. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/legend/legend_items/legend_item_type.gd:53 - Parse Error: The identifier "Sc" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/legend/legend_items/legend_item.gd:64 - Parse Error: The class "LegendItemType" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/legend/legend_items/polyline_legend_item.gd:23 - Parse Error: The class "ColorParams" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/legend/legend_items/legend_item_type.gd:53 - Parse Error: The identifier "Sc" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/legend/legend_items/legend_item.gd:64 - Parse Error: The class "LegendItemType" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/control_row_list/text_control_row.gd:46 - Parse Error: The class "ControlRow" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/level/scaffolder_level_session.gd:114 - Parse Error: The identifier "Sc" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/control_rows/displays/fastest_time_control_row.gd:33 - Parse Error: The class "ScaffolderLevelSession" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/control_row_list/text_control_row.gd:46 - Parse Error: The class "ControlRow" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/surface/surface_type.gd:26 - Parse Error: The identifier "Sc" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/character/action/action_handlers/floor_dash_action.gd:6 - Parse Error: Expected a constant expression. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/surface/surface_type.gd:26 - Parse Error: The identifier "Sc" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/character/action/action_handlers/floor_default_action.gd:6 - Parse Error: Expected a constant expression. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/surface/surface_type.gd:26 - Parse Error: The identifier "Sc" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/character/action/action_handlers/fall_through_floor_action.gd:6 - Parse Error: Expected a constant expression. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/surface/surface_type.gd:26 - Parse Error: The identifier "Sc" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/character/action/action_handlers/floor_friction_action.gd:6 - Parse Error: Expected a constant expression. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/surface/surface_type.gd:26 - Parse Error: The identifier "Sc" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/character/action/action_handlers/floor_jump_action.gd:6 - Parse Error: Expected a constant expression. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/surface/surface_type.gd:26 - Parse Error: The identifier "Sc" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/character/action/action_handlers/floor_walk_action.gd:6 - Parse Error: Expected a constant expression. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/platform_graph_inspector/inspector_item_controllers/inspector_item_type.gd:104 - Parse Error: The identifier "Sc" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/platform_graph_inspector/inspector_item_controllers/inspector_item_controller.gd:5 - Parse Error: Expected a constant expression. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/edge/models/movement_parameters.gd:3 - Parse Error: No class icon found at: res://addons/surfacer/assets/images/editor_icons/movement_params.png modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/surface/surface_side.gd:26 - Parse Error: The identifier "Sc" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/surface/surface.gd:207 - Parse Error: The class "SurfaceSide" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/surface/position_along_surface.gd:36 - Parse Error: The class "Surface" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/surface/surface_side.gd:26 - Parse Error: The identifier "Sc" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/surface/surface.gd:207 - Parse Error: The class "SurfaceSide" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/surface/position_along_surface.gd:36 - Parse Error: The class "Surface" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/platform_graph.gd:373 - Parse Error: The class "MovementParameters" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/platform_graph_inspector/inspector_item_controllers/surfaces_group/surfaces_of_side_item_controller.gd:15 - Parse Error: The class "PlatformGraph" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/platform_graph_inspector/inspector_item_controllers/surfaces_group/floors_item_controller.gd:5 - Parse Error: Expected a constant expression. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/platform_graph_inspector/inspector_item_controllers/inspector_item_controller.gd:5 - Parse Error: Expected a constant expression. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/edge/models/movement_parameters.gd:3 - Parse Error: No class icon found at: res://addons/surfacer/assets/images/editor_icons/movement_params.png modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/surface/surface_side.gd:26 - Parse Error: The identifier "Sc" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/surface/surface.gd:207 - Parse Error: The class "SurfaceSide" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/surface/position_along_surface.gd:36 - Parse Error: The class "Surface" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/surface/surface_side.gd:26 - Parse Error: The identifier "Sc" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/surface/surface.gd:207 - Parse Error: The class "SurfaceSide" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/surface/position_along_surface.gd:36 - Parse Error: The class "Surface" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/platform_graph.gd:373 - Parse Error: The class "MovementParameters" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/platform_graph_inspector/inspector_item_controllers/surfaces_group/surfaces_of_side_item_controller.gd:15 - Parse Error: The class "PlatformGraph" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/platform_graph_inspector/inspector_item_controllers/inspector_item_controller.gd:5 - Parse Error: Expected a constant expression. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/character/behaviors/follow_behavior.gd:3 - Parse Error: No class icon found at: res://addons/surfacer/assets/images/editor_icons/follow_behavior.png modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/edge/calculators/from_air_calculator.gd:6 - Parse Error: Expected a constant expression. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/edge/edges/from_air_edge.gd:6 - Parse Error: Expected a constant expression. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/widgets/full_screen_panel.gd:3 - Parse Error: No class icon found at: res://addons/scaffolder/assets/images/editor_icons/full_screen_panel.png modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/screen.gd:3 - Parse Error: No class icon found at: res://addons/scaffolder/assets/images/editor_icons/scaffolder_panel_container.png modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/screens/game_over_screen.gd:39 - Parse Error: The class "Screen" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/screen.gd:3 - Parse Error: No class icon found at: res://addons/scaffolder/assets/images/editor_icons/scaffolder_panel_container.png modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/screen.gd:3 - Parse Error: No class icon found at: res://addons/scaffolder/assets/images/editor_icons/scaffolder_panel_container.png modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/screens/game_screen.gd:43 - Parse Error: The class "Screen" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/screen.gd:3 - Parse Error: No class icon found at: res://addons/scaffolder/assets/images/editor_icons/scaffolder_panel_container.png modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/data/gesture_record.gd:11 - Parse Error: The identifier "Sc" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/data/gesture_reporter.gd:10 - Parse Error: The identifier "Sc" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/platform_graph_inspector/inspector_item_controllers/inspector_item_type.gd:104 - Parse Error: The identifier "Sc" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/platform_graph_inspector/inspector_item_controllers/inspector_item_controller.gd:5 - Parse Error: Expected a constant expression. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/platform_graph_inspector/inspector_item_controllers/profiler_group/global_counts_group_item_controller.gd:5 - Parse Error: Expected a constant expression. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/platform_graph_inspector/inspector_item_controllers/inspector_item_controller.gd:5 - Parse Error: Expected a constant expression. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/screens/godot_splash_screen.gd:10 - Parse Error: The identifier "background_color_override" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/screen.gd:3 - Parse Error: No class icon found at: res://addons/scaffolder/assets/images/editor_icons/scaffolder_panel_container.png modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/surface/surface_side.gd:26 - Parse Error: The identifier "Sc" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/surface/surface.gd:207 - Parse Error: The class "SurfaceSide" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/surfaces_tile_map.gd:3 - Parse Error: No class icon found at: res://addons/surfacer/assets/images/editor_icons/surfaces_tile_map.png modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/surface/surface_store.gd:43 - Parse Error: The class "Surface" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/annotators/grid_indices_annotator.gd:10 - Parse Error: The class "SurfaceStore" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/control_rows/settings/haptic_feedback_control_row.gd:17 - Parse Error: The identifier "Sc" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/control_row_list/header_control_row.gd:27 - Parse Error: The class "ControlRow" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/control_row_list/text_control_row.gd:46 - Parse Error: The class "ControlRow" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/level/scaffolder_level_session.gd:114 - Parse Error: The identifier "Sc" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/control_rows/displays/high_score_control_row.gd:27 - Parse Error: The class "ScaffolderLevelSession" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/control_row_list/text_control_row.gd:46 - Parse Error: The class "ControlRow" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/edge/utils/horizontal_movement_utils.gd:9 - Parse Error: The class "EdgeCalcResultMetadata" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/annotators/color_params/hsv_color_params.gd:5 - Parse Error: Expected a constant expression. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/annotators/color_params/hsv_range_color_params.gd:5 - Parse Error: Expected a constant expression. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/widgets/scaffolder_panel_container.gd:3 - Parse Error: No class icon found at: res://addons/scaffolder/assets/images/editor_icons/scaffolder_panel_container.png modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/control_row_list/text_control_row.gd:46 - Parse Error: The class "ControlRow" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/utils/time/scaffolder_tween.gd:19 - Parse Error: The identifier "Sc" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/hud/hud_key_value_box.gd:8 - Parse Error: The class "TextControlRow" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/widgets/scaffolder_panel_container.gd:3 - Parse Error: No class icon found at: res://addons/scaffolder/assets/images/editor_icons/scaffolder_panel_container.png modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/control_rows/settings/hud_key_value_item_control_row.gd:19 - Parse Error: The identifier "Sc" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/hud/hud_key_value_list.gd:12 - Parse Error: The identifier "Sc" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/legend/legend_items/legend_item_type.gd:53 - Parse Error: The identifier "Sc" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/legend/legend_items/legend_item_type.gd:53 - Parse Error: The identifier "Sc" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/legend/legend_items/legend_item.gd:64 - Parse Error: The class "LegendItemType" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/legend/legend_items/hypothetical_edge_trajectory_legend_item.gd:5 - Parse Error: Expected a constant expression. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/legend/legend_items/legend_item_type.gd:53 - Parse Error: The identifier "Sc" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/legend/legend_items/legend_item.gd:64 - Parse Error: The class "LegendItemType" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/control_rows/inspector_enabled_control_row.gd:19 - Parse Error: The identifier "Su" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/platform_graph_inspector/inspector_item_controllers/inspector_item_controller.gd:5 - Parse Error: Expected a constant expression. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/platform_graph_inspector/inspector_item_controllers/inspector_item_type.gd:104 - Parse Error: The identifier "Sc" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/panels/inspector_panel.gd:3 - Parse Error: No class icon found at: res://addons/scaffolder/assets/images/editor_icons/scaffolder_placeholder.png modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/platform_graph_inspector/inspector_search_type.gd:26 - Parse Error: The identifier "Sc" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/legend/legend_items/legend_item_type.gd:53 - Parse Error: The identifier "Sc" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/legend/legend_items/legend_item_type.gd:53 - Parse Error: The identifier "Sc" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/legend/legend_items/legend_item.gd:64 - Parse Error: The class "LegendItemType" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/legend/legend_items/instruction_end_legend_item.gd:5 - Parse Error: Expected a constant expression. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/legend/legend_items/legend_item_type.gd:53 - Parse Error: The identifier "Sc" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/legend/legend_items/legend_item.gd:64 - Parse Error: The class "LegendItemType" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/legend/legend_items/legend_item_type.gd:53 - Parse Error: The identifier "Sc" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/legend/legend_items/legend_item_type.gd:53 - Parse Error: The identifier "Sc" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/legend/legend_items/legend_item.gd:64 - Parse Error: The class "LegendItemType" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/legend/legend_items/instruction_start_legend_item.gd:5 - Parse Error: Expected a constant expression. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/legend/legend_items/legend_item_type.gd:53 - Parse Error: The identifier "Sc" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/legend/legend_items/legend_item.gd:64 - Parse Error: The class "LegendItemType" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/character/action/instructions_action_source.gd:21 - Parse Error: The class "CharacterActionState" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/character/action/instructions_playback.gd:23 - Parse Error: The class "Edge" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/surface/surface_side.gd:26 - Parse Error: The identifier "Sc" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/surface/surface.gd:207 - Parse Error: The class "SurfaceSide" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/surface/surface_side.gd:26 - Parse Error: The identifier "Sc" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/surface/surface.gd:207 - Parse Error: The class "SurfaceSide" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/edge/models/inter_surface_edges_result.gd:28 - Parse Error: The class "Surface" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/edge/calculators/intra_surface_calculator.gd:6 - Parse Error: Expected a constant expression. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/edge/edges/intra_surface_edge.gd:9 - Parse Error: Expected a constant expression. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/control_rows/intro_choreography_control_row.gd:19 - Parse Error: The identifier "Su" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/utils/ios_resolutions.gd:260 - Parse Error: The identifier "Sc" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/utils/json_utils.gd:10 - Parse Error: The identifier "Sc" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/edge/calculators/jump_from_surface_calculator.gd:6 - Parse Error: Expected a constant expression. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/edge/edges/jump_from_surface_edge.gd:7 - Parse Error: Expected a constant expression. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/surface/surface_side.gd:26 - Parse Error: The identifier "Sc" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/surface/surface.gd:207 - Parse Error: The class "SurfaceSide" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/surface/position_along_surface.gd:36 - Parse Error: The class "Surface" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/surface/surface_side.gd:26 - Parse Error: The identifier "Sc" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/surface/surface.gd:207 - Parse Error: The class "SurfaceSide" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/surface/position_along_surface.gd:36 - Parse Error: The class "Surface" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/edge/models/jump_land_positions.gd:35 - Parse Error: The class "PositionAlongSurface" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/annotators/annotation_elements/jump_land_positions_annotation_element.gd:5 - Parse Error: Expected a constant expression. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/edge/models/movement_parameters.gd:3 - Parse Error: No class icon found at: res://addons/surfacer/assets/images/editor_icons/movement_params.png modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/surface/surface_side.gd:26 - Parse Error: The identifier "Sc" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/surface/surface.gd:207 - Parse Error: The class "SurfaceSide" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/surface/surface_side.gd:26 - Parse Error: The identifier "Sc" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/surface/surface.gd:207 - Parse Error: The class "SurfaceSide" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/edge/utils/jump_land_positions_utils.gd:50 - Parse Error: The class "MovementParameters" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/control_row_list/control_row_list.gd:3 - Parse Error: No class icon found at: res://addons/scaffolder/assets/images/editor_icons/control_row_list.png modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/edge/models/movement_parameters.gd:3 - Parse Error: No class icon found at: res://addons/surfacer/assets/images/editor_icons/movement_params.png modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/surface/surface_side.gd:26 - Parse Error: The identifier "Sc" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/surface/surface.gd:207 - Parse Error: The class "SurfaceSide" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/surface/position_along_surface.gd:36 - Parse Error: The class "Surface" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/surface/surface_side.gd:26 - Parse Error: The identifier "Sc" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/surface/surface.gd:207 - Parse Error: The class "SurfaceSide" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/surface/position_along_surface.gd:36 - Parse Error: The class "Surface" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/platform_graph.gd:373 - Parse Error: The class "MovementParameters" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/platform_graph_inspector/inspector_item_controllers/surfaces_group/surfaces_of_side_item_controller.gd:15 - Parse Error: The class "PlatformGraph" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/platform_graph_inspector/inspector_item_controllers/surfaces_group/left_walls_item_controller.gd:5 - Parse Error: Expected a constant expression. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/edge/models/movement_parameters.gd:3 - Parse Error: No class icon found at: res://addons/surfacer/assets/images/editor_icons/movement_params.png modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/surface/surface_side.gd:26 - Parse Error: The identifier "Sc" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/surface/surface.gd:207 - Parse Error: The class "SurfaceSide" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/surface/position_along_surface.gd:36 - Parse Error: The class "Surface" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/surface/surface_side.gd:26 - Parse Error: The identifier "Sc" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/surface/surface.gd:207 - Parse Error: The class "SurfaceSide" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/surface/position_along_surface.gd:36 - Parse Error: The class "Surface" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/platform_graph.gd:373 - Parse Error: The class "MovementParameters" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/platform_graph_inspector/inspector_item_controllers/surfaces_group/surfaces_of_side_item_controller.gd:15 - Parse Error: The class "PlatformGraph" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/legend/legend_items/legend_item_type.gd:53 - Parse Error: The identifier "Sc" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/legend/legend_items/legend_item.gd:64 - Parse Error: The class "LegendItemType" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/legend/legend.gd:43 - Parse Error: The class "LegendItem" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/legend/legend_items/legend_item_type.gd:53 - Parse Error: The identifier "Sc" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/legend/legend_items/legend_item.gd:64 - Parse Error: The class "LegendItemType" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/legend/legend_items/legend_item_type.gd:53 - Parse Error: The identifier "Sc" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/control_rows/level_annotator_control_row.gd:34 - Parse Error: The class "AnnotatorType" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/utils/level_button_input.gd:12 - Parse Error: The identifier "Sc" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/control_row_list/text_control_row.gd:46 - Parse Error: The class "ControlRow" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/level/scaffolder_level_session.gd:114 - Parse Error: The identifier "Sc" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/control_rows/displays/level_control_row.gd:27 - Parse Error: The class "ScaffolderLevelSession" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/control_row_list/text_control_row.gd:46 - Parse Error: The class "ControlRow" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/level_select/level_select_item.gd:3 - Parse Error: No class icon found at: res://addons/scaffolder/assets/images/editor_icons/scaffolder_placeholder.png modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/widgets/scaffolder_button.gd:3 - Parse Error: No class icon found at: res://addons/scaffolder/assets/images/editor_icons/scaffolder_button.png modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/level_select/level_select_item_body.gd:28 - Parse Error: The class "ScaffolderButton" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/level_select/level_select_item_locked_header.gd:3 - Parse Error: No class icon found at: res://addons/scaffolder/assets/images/editor_icons/scaffolder_placeholder.png modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/level_select/level_select_item_unlocked_header.gd:3 - Parse Error: No class icon found at: res://addons/scaffolder/assets/images/editor_icons/scaffolder_placeholder.png modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR Cannot open file 'res://addons/scaffolder/src/gui/level_select/level_select_item.tscn'. Failed loading resource: res://addons/scaffolder/src/gui/level_select/level_select_item.tscn. Make sure resources have been imported by opening the project in the editor at least once. res://src/gui/screens/level_select_screen.gd:7 - Parse Error: Can't preload resource at path: res://addons/scaffolder/src/gui/level_select/level_select_item.tscn modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/screen.gd:3 - Parse Error: No class icon found at: res://addons/scaffolder/assets/images/editor_icons/scaffolder_panel_container.png modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/level_select/lock_animation.gd:3 - Parse Error: No class icon found at: res://addons/scaffolder/assets/images/editor_icons/scaffolder_placeholder.png modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/screen.gd:3 - Parse Error: No class icon found at: res://addons/scaffolder/assets/images/editor_icons/scaffolder_panel_container.png modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/widgets/scaffolder_button.gd:3 - Parse Error: No class icon found at: res://addons/scaffolder/assets/images/editor_icons/scaffolder_button.png modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/screens/main_menu_screen.gd:26 - Parse Error: The class "ScaffolderButton" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/screen.gd:3 - Parse Error: No class icon found at: res://addons/scaffolder/assets/images/editor_icons/scaffolder_panel_container.png modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/control_rows/settings/metronome_control_row.gd:18 - Parse Error: The identifier "Sc" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/character/behaviors/move_back_and_forth_behavior.gd:3 - Parse Error: No class icon found at: res://addons/surfacer/assets/images/editor_icons/move_back_and_forth_behavior.png modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/edge/models/movement_parameters.gd:3 - Parse Error: No class icon found at: res://addons/surfacer/assets/images/editor_icons/movement_params.png modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/edge/utils/movement_utils.gd:366 - Parse Error: The class "MovementParameters" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/control_rows/settings/music_control_row.gd:17 - Parse Error: The identifier "Sc" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/nav_bar.gd:3 - Parse Error: No class icon found at: res://addons/scaffolder/assets/images/editor_icons/nav_bar.png modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/navigation_interruption_resolution.gd:26 - Parse Error: The identifier "Sc" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/surface_navigator.gd:1039 - Parse Error: The class "IntraSurfaceEdge" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/annotators/navigation_pulse_annotator.gd:19 - Parse Error: The class "SurfaceNavigator" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/surface_navigator.gd:1039 - Parse Error: The class "IntraSurfaceEdge" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/annotators/navigator_annotator.gd:35 - Parse Error: The class "SurfaceNavigator" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/screen.gd:3 - Parse Error: No class icon found at: res://addons/scaffolder/assets/images/editor_icons/scaffolder_panel_container.png modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/widgets/scaffolder_button.gd:3 - Parse Error: No class icon found at: res://addons/scaffolder/assets/images/editor_icons/scaffolder_button.png modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/screens/notification_screen.gd:44 - Parse Error: The class "ScaffolderButton" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/screen.gd:3 - Parse Error: No class icon found at: res://addons/scaffolder/assets/images/editor_icons/scaffolder_panel_container.png modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/control_rows/npc/npc_navigation_destination_annotator_control_row.gd:17 - Parse Error: The identifier "Su" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/control_rows/npc/npc_non_slow_mo_trajectory_annotator_control_row.gd:17 - Parse Error: The identifier "Su" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/control_rows/npc/npc_previous_trajectory_annotator_control_row.gd:17 - Parse Error: The identifier "Su" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/control_rows/npc/npc_slow_mo_trajectory_annotator_control_row.gd:17 - Parse Error: The identifier "Su" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/annotators/transient_annotators/transient_annotator.gd:25 - Parse Error: The identifier "Sc" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/annotators/transient_annotators/on_beat_hash_annotator.gd:19 - Parse Error: The identifier "Sc" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/annotators/transient_annotators/transient_annotator.gd:25 - Parse Error: The identifier "Sc" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/legend/legend_items/origin_legend_item.gd:5 - Parse Error: Expected a constant expression. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/annotators/annotation_elements/surface_annotation_element.gd:5 - Parse Error: Expected a constant expression. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/annotators/annotation_elements/origin_surface_annotation_element.gd:5 - Parse Error: Expected a constant expression. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/annotators/annotation_elements/surface_annotation_element.gd:5 - Parse Error: Expected a constant expression. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/platform_graph_inspector/inspector_item_controllers/surfaces_group/origin_surface_item_controller.gd:5 - Parse Error: Expected a constant expression. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/legend/legend_items/surface_legend_item.gd:5 - Parse Error: Expected a constant expression. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/legend/legend_items/origin_surface_legend_item.gd:5 - Parse Error: Expected a constant expression. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/legend/legend_items/surface_legend_item.gd:5 - Parse Error: Expected a constant expression. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR Can't open file from path 'res://addons/scaffolder/src/gui/overlay_mask_transition.shader'. Failed to get modified time for: C:/Users/whend/Documents/Memetic/addons/scaffolder/src/gui/overlay_mask_transition.shader. res://src/data/scaffolder_log.gd:15 - Parse Error: The identifier "Sc" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/utils/screen_transition.gd:51 - Parse Error: The class "ScaffolderLog" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/overlay_mask_transition.gd:77 - Parse Error: The class "ScreenTransition" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/character/surfacer_character.gd:3 - Parse Error: No class icon found at: res://addons/scaffolder/assets/images/editor_icons/scaffolder_character.png modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/annotators/path_preselection_annotator.gd:40 - Parse Error: The class "SurfacerCharacter" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/pause_button.gd:3 - Parse Error: No class icon found at: res://addons/scaffolder/assets/images/editor_icons/scaffolder_placeholder.png modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/screen.gd:3 - Parse Error: No class icon found at: res://addons/scaffolder/assets/images/editor_icons/scaffolder_panel_container.png modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/screens/pause_screen.gd:15 - Parse Error: The class "Screen" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/screen.gd:3 - Parse Error: No class icon found at: res://addons/scaffolder/assets/images/editor_icons/scaffolder_panel_container.png modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/scaffolder_configured_image.gd:3 - Parse Error: No class icon found at: res://addons/scaffolder/assets/images/editor_icons/scaffolder_placeholder.png modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/surface/surface_side.gd:26 - Parse Error: The identifier "Sc" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/surface/surface.gd:207 - Parse Error: The class "SurfaceSide" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/surface/position_along_surface.gd:36 - Parse Error: The class "Surface" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/surface/surface_side.gd:26 - Parse Error: The identifier "Sc" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/surface/surface.gd:207 - Parse Error: The class "SurfaceSide" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/surface/position_along_surface.gd:36 - Parse Error: The class "Surface" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/platform_graph.gd:373 - Parse Error: The class "MovementParameters" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/platform_graph_inspector/platform_graph_inspector.gd:535 - Parse Error: The class "JumpLandPositions" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/surface/surface_side.gd:26 - Parse Error: The identifier "Sc" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/surface/surface.gd:207 - Parse Error: The class "SurfaceSide" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/surface/position_along_surface.gd:36 - Parse Error: The class "Surface" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/surface/surface_side.gd:26 - Parse Error: The identifier "Sc" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/surface/surface.gd:207 - Parse Error: The class "SurfaceSide" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/surface/position_along_surface.gd:36 - Parse Error: The class "Surface" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/platform_graph_inspector/platform_graph_inspector_selector.gd:7 - Parse Error: The class "PositionAlongSurface" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/platform_graph_inspector/inspector_item_controllers/platform_graph_item_controller.gd:5 - Parse Error: Expected a constant expression. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/platform_graph_parser.gd:159 - Parse Error: The class "PlatformGraph" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/platform_graph_path.gd:46 - Parse Error: The class "Edge" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/character/action/player_action_source.gd:29 - Parse Error: The class "CharacterActionState" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/surface/surface_side.gd:26 - Parse Error: The identifier "Sc" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/surface/surface.gd:207 - Parse Error: The class "SurfaceSide" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/surface/position_along_surface.gd:36 - Parse Error: The class "Surface" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/surface/surface_side.gd:26 - Parse Error: The identifier "Sc" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/surface/surface.gd:207 - Parse Error: The class "SurfaceSide" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/surface/position_along_surface.gd:36 - Parse Error: The class "Surface" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/character/pointer_selection_position.gd:17 - Parse Error: The class "PositionAlongSurface" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/surface/surface_side.gd:26 - Parse Error: The identifier "Sc" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/surface/surface.gd:207 - Parse Error: The class "SurfaceSide" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/surface/position_along_surface.gd:36 - Parse Error: The class "Surface" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/surface/surface_side.gd:26 - Parse Error: The identifier "Sc" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/surface/surface.gd:207 - Parse Error: The class "SurfaceSide" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/surface/position_along_surface.gd:36 - Parse Error: The class "Surface" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/character/pointer_selection_position.gd:17 - Parse Error: The class "PositionAlongSurface" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/surface/surface_side.gd:26 - Parse Error: The identifier "Sc" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/surface/surface.gd:207 - Parse Error: The class "SurfaceSide" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/surface/position_along_surface.gd:36 - Parse Error: The class "Surface" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/surface/surface_side.gd:26 - Parse Error: The identifier "Sc" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/surface/surface.gd:207 - Parse Error: The class "SurfaceSide" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/surface/position_along_surface.gd:36 - Parse Error: The class "Surface" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/character/pointer_selection_position.gd:17 - Parse Error: The class "PositionAlongSurface" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/character/behaviors/player_navigation_behavior.gd:15 - Parse Error: The class "PointerSelectionPosition" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/control_rows/player/player_navigation_destination_annotator_control_row.gd:17 - Parse Error: The identifier "Su" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/control_rows/player/player_non_slow_mo_trajectory_annotator_control_row.gd:17 - Parse Error: The identifier "Su" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/character/player_pointer_listener.gd:6 - Parse Error: The class "PlayerNavigationBehavior" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/control_rows/player/player_preselection_trajectory_annotator_control_row.gd:17 - Parse Error: The identifier "Su" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/control_rows/player/player_previous_trajectory_annotator_control_row.gd:17 - Parse Error: The identifier "Su" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/control_rows/player/player_slow_mo_trajectory_annotator_control_row.gd:17 - Parse Error: The identifier "Su" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/surface/surface_side.gd:26 - Parse Error: The identifier "Sc" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/surface/surface.gd:207 - Parse Error: The class "SurfaceSide" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/surface/position_along_surface.gd:36 - Parse Error: The class "Surface" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/surface/surface_side.gd:26 - Parse Error: The identifier "Sc" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/surface/surface.gd:207 - Parse Error: The class "SurfaceSide" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/surface/position_along_surface.gd:36 - Parse Error: The class "Surface" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/character/pointer_selection_position.gd:17 - Parse Error: The class "PositionAlongSurface" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/annotators/annotation_elements/polyline_annotation_element.gd:16 - Parse Error: The class "ColorParams" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/legend/legend_items/polyline_legend_item.gd:23 - Parse Error: The class "ColorParams" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/surface/surface_side.gd:26 - Parse Error: The identifier "Sc" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/surface/surface.gd:207 - Parse Error: The class "SurfaceSide" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/surface/position_along_surface.gd:36 - Parse Error: The class "Surface" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/surface/surface_side.gd:26 - Parse Error: The identifier "Sc" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/surface/surface.gd:207 - Parse Error: The class "SurfaceSide" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/utils/rotated_shape.gd:33 - Parse Error: The identifier "Sc" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/edge/utils/position_along_surface_factory.gd:6 - Parse Error: The class "PositionAlongSurface" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/screen.gd:3 - Parse Error: No class icon found at: res://addons/scaffolder/assets/images/editor_icons/scaffolder_panel_container.png modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/screens/precompute_platform_graphs_screen.gd:38 - Parse Error: The class "Screen" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/screen.gd:3 - Parse Error: No class icon found at: res://addons/scaffolder/assets/images/editor_icons/scaffolder_panel_container.png modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/utils/time/profiler.gd:29 - Parse Error: The identifier "Sc" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/platform_graph_inspector/inspector_item_controllers/profiler_group/profiler_count_item_controller.gd:5 - Parse Error: Expected a constant expression. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/platform_graph_inspector/inspector_item_controllers/profiler_group/profiler_group_item_controller.gd:5 - Parse Error: Expected a constant expression. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/platform_graph_inspector/inspector_item_controllers/profiler_group/profiler_timing_item_controller.gd:5 - Parse Error: Expected a constant expression. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/character/proximity_detector.gd:3 - Parse Error: No class icon found at: res://addons/scaffolder/assets/images/editor_icons/proximity_detector.png modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/screen.gd:3 - Parse Error: No class icon found at: res://addons/scaffolder/assets/images/editor_icons/scaffolder_panel_container.png modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/screens/rate_app_screen.gd:9 - Parse Error: The class "Screen" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/screen.gd:3 - Parse Error: No class icon found at: res://addons/scaffolder/assets/images/editor_icons/scaffolder_panel_container.png modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/control_rows/recent_movement_annotator_control_row.gd:34 - Parse Error: The class "AnnotatorType" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/character/behaviors/return_behavior.gd:13 - Parse Error: The class "PositionAlongSurface" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/platform_graph_inspector/inspector_item_controllers/surfaces_group/surfaces_of_side_item_controller.gd:15 - Parse Error: The class "PlatformGraph" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/platform_graph_inspector/inspector_item_controllers/surfaces_group/right_walls_item_controller.gd:5 - Parse Error: Expected a constant expression. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/platform_graph_inspector/inspector_item_controllers/surfaces_group/surfaces_of_side_item_controller.gd:15 - Parse Error: The class "PlatformGraph" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/utils/rotated_shape.gd:33 - Parse Error: The identifier "Sc" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/annotators/ruler_annotator.gd:15 - Parse Error: The identifier "Sc" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/control_rows/ruler_annotator_control_row.gd:34 - Parse Error: The class "AnnotatorType" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/character/behaviors/run_away_behavior.gd:3 - Parse Error: No class icon found at: res://addons/surfacer/assets/images/editor_icons/run_away_behavior.png modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/data/save_state.gd:40 - Parse Error: The identifier "Sc" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/config/scaffolder_colors.gd:147 - Parse Error: The identifier "Sc" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/config/scaffolder_colors.gd:147 - Parse Error: The identifier "Sc" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/config/scaffolder_colors.gd:147 - Parse Error: The identifier "Sc" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/annotators/scaffolder_annotation_parameters.gd:13 - Parse Error: The identifier "Sc" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/annotators/scaffolder_annotators.gd:18 - Parse Error: Expected a constant expression. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/config/scaffolder_app_metadata.gd:92 - Parse Error: The identifier "Sc" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/config/scaffolder_audio_manifest.gd:40 - Parse Error: The identifier "Sc" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/config/scaffolder_bootstrap.gd:15 - Parse Error: The identifier "Sc" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/widgets/scaffolder_button.gd:3 - Parse Error: No class icon found at: res://addons/scaffolder/assets/images/editor_icons/scaffolder_button.png modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/character/scaffolder_character.gd:3 - Parse Error: No class icon found at: res://addons/scaffolder/assets/images/editor_icons/scaffolder_character.png modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/character/scaffolder_character_animator.gd:3 - Parse Error: No class icon found at: res://addons/scaffolder/assets/images/editor_icons/scaffolder_character_animator.png modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/annotators/character_annotators/scaffolder_character_annotator.gd:11 - Parse Error: The class "ScaffolderCharacter" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/config/scaffolder_character_manifest.gd:46 - Parse Error: The class "ScaffolderCharacter" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/annotators/character_annotators/scaffolder_character_position_annotator.gd:11 - Parse Error: The class "ScaffolderCharacter" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/character/surfacer_character.gd:3 - Parse Error: No class icon found at: res://addons/scaffolder/assets/images/editor_icons/scaffolder_character.png modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/annotators/character_annotators/scaffolder_character_recent_movement_annotator.gd:20 - Parse Error: The class "SurfacerCharacter" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/widgets/scaffolder_check_box.gd:3 - Parse Error: No class icon found at: res://addons/scaffolder/assets/images/editor_icons/scaffolder_check_box.png modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/annotators/transient_annotators/transient_annotator.gd:25 - Parse Error: The identifier "Sc" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/annotators/transient_annotators/scaffolder_click_annotator.gd:17 - Parse Error: The identifier "Sc" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/annotators/transient_annotators/transient_annotator.gd:25 - Parse Error: The identifier "Sc" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/config/scaffolder_colors.gd:147 - Parse Error: The identifier "Sc" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/utils/scaffolder_draw_utils.gd:624 - Parse Error: The class "RotatedShape" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/utils/scaffolder_geometry.gd:370 - Parse Error: The identifier "Sc" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR Cannot open file 'res://addons/scaffolder/src/gui/widgets/accordion_panel.tscn'. Failed loading resource: res://addons/scaffolder/src/gui/widgets/accordion_panel.tscn. Make sure resources have been imported by opening the project in the editor at least once. res://src/config/scaffolder_gui_config.gd:9 - Parse Error: Can't preload resource at path: res://addons/scaffolder/src/gui/widgets/accordion_panel.tscn modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/widgets/scaffolder_h_separator.gd:3 - Parse Error: No class icon found at: res://addons/scaffolder/assets/images/editor_icons/scaffolder_h_separator.png modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/hud/scaffolder_hud.gd:6 - Parse Error: The class "HudKeyValueList" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR Resource file not found: res://addons/scaffolder/assets/images/logos/godot_logo_about.png. res://src/config/scaffolder_images.gd:148 - Parse Error: Can't preload resource at path: res://addons/scaffolder/assets/images/logos/godot_logo_about.png modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/widgets/scaffolder_label.gd:3 - Parse Error: No class icon found at: res://addons/scaffolder/assets/images/editor_icons/scaffolder_label.png modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/widgets/scaffolder_label_link.gd:3 - Parse Error: No class icon found at: res://addons/scaffolder/assets/images/editor_icons/scaffolder_label_link.png modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/level/scaffolder_level.gd:3 - Parse Error: No class icon found at: res://addons/scaffolder/assets/images/editor_icons/scaffolder_level.png modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/config/scaffolder_level_config.gd:37 - Parse Error: The identifier "Sc" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/level/scaffolder_level_session.gd:114 - Parse Error: The identifier "Sc" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/screen.gd:3 - Parse Error: No class icon found at: res://addons/scaffolder/assets/images/editor_icons/scaffolder_panel_container.png modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/screens/scaffolder_loading_screen.gd:39 - Parse Error: The class "Screen" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/screen.gd:3 - Parse Error: No class icon found at: res://addons/scaffolder/assets/images/editor_icons/scaffolder_panel_container.png modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/data/scaffolder_log.gd:15 - Parse Error: The identifier "Sc" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/widgets/scaffolder_option_button.gd:3 - Parse Error: No class icon found at: res://addons/scaffolder/assets/images/editor_icons/scaffolder_option_button.png modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/widgets/scaffolder_panel_container.gd:3 - Parse Error: No class icon found at: res://addons/scaffolder/assets/images/editor_icons/scaffolder_panel_container.png modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/widgets/scaffolder_progress_bar.gd:3 - Parse Error: No class icon found at: res://addons/scaffolder/assets/images/editor_icons/progress_bar.png modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/config/scaffolder_project_settings.gd:94 - Parse Error: The identifier "Sc" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/widgets/scaffolder_slider.gd:3 - Parse Error: No class icon found at: res://addons/scaffolder/assets/images/editor_icons/slider.png modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/style_box_texture_scalable.gd:52 - Parse Error: The identifier "Sc" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/config/scaffolder_styles.gd:1172 - Parse Error: The class "StyleBoxTextureScalable" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/widgets/scaffolder_texture_button.gd:3 - Parse Error: No class icon found at: res://addons/scaffolder/assets/images/editor_icons/scaffolder_texture_button.png modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/widgets/scaffolder_texture_link.gd:3 - Parse Error: No class icon found at: res://addons/scaffolder/assets/images/editor_icons/scaffolder_texture_link.png modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/widgets/scaffolder_texture_rect.gd:3 - Parse Error: No class icon found at: res://addons/scaffolder/assets/images/editor_icons/scaffolder_texture_rect.png modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/utils/time/scaffolder_tween.gd:19 - Parse Error: The identifier "Sc" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/widgets/scaffolder_v_separator.gd:3 - Parse Error: No class icon found at: res://addons/scaffolder/assets/images/editor_icons/scaffolder_v_separator.png modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/control_row_list/text_control_row.gd:46 - Parse Error: The class "ControlRow" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/control_rows/displays/score_control_row.gd:17 - Parse Error: The identifier "Sc" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/control_row_list/text_control_row.gd:46 - Parse Error: The class "ControlRow" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/screen.gd:3 - Parse Error: No class icon found at: res://addons/scaffolder/assets/images/editor_icons/scaffolder_panel_container.png modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/screen_container.gd:3 - Parse Error: No class icon found at: res://addons/scaffolder/assets/images/editor_icons/scaffolder_placeholder.png modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR Can't open file from path 'res://addons/scaffolder/src/gui/screen_mask_transition.shader'. Failed to get modified time for: C:/Users/whend/Documents/Memetic/addons/scaffolder/src/gui/screen_mask_transition.shader. res://src/utils/screen_transition.gd:51 - Parse Error: The class "ScaffolderLog" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/screen_mask_transition.gd:78 - Parse Error: The class "ScreenContainer" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR Cannot open file 'res://addons/scaffolder/src/gui/screen_container.tscn'. Failed loading resource: res://addons/scaffolder/src/gui/screen_container.tscn. Make sure resources have been imported by opening the project in the editor at least once. res://src/utils/screen_navigator.gd:10 - Parse Error: Can't preload resource at path: res://addons/scaffolder/src/gui/screen_container.tscn modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/utils/screen_transition.gd:51 - Parse Error: The class "ScaffolderLog" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR Resource file not found: res://addons/scaffolder/assets/images/transition_masks/radial_mask_transition_in.png. res://src/utils/screen_transition_handler.gd:18 - Parse Error: Can't preload resource at path: res://addons/scaffolder/assets/images/transition_masks/radial_mask_transition_in.png modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/settings_group.gd:3 - Parse Error: No class icon found at: res://addons/scaffolder/assets/images/editor_icons/scaffolder_placeholder.png modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR Cannot open file 'res://addons/scaffolder/src/gui/settings_group.tscn'. Failed loading resource: res://addons/scaffolder/src/gui/settings_group.tscn. Make sure resources have been imported by opening the project in the editor at least once. res://src/gui/screens/settings_screen.gd:7 - Parse Error: Can't preload resource at path: res://addons/scaffolder/src/gui/settings_group.tscn modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/control_row_list/slider_control_row.gd:123 - Parse Error: The class "ControlRow" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR Can't open file from path 'res://addons/scaffolder/src/desaturation.shader'. Failed to get modified time for: C:/Users/whend/Documents/Memetic/addons/scaffolder/src/desaturation.shader. res://src/utils/time/slow_motion_music.gd:30 - Parse Error: The identifier "Sc" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/utils/time/slow_motion_controller.gd:24 - Parse Error: The class "SlowMotionMusic" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/utils/time/slow_motion_music.gd:30 - Parse Error: The identifier "Sc" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/control_rows/settings/sound_effects_control_row.gd:17 - Parse Error: The identifier "Sc" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/widgets/spacer.gd:3 - Parse Error: No class icon found at: res://addons/scaffolder/assets/images/editor_icons/spacer.png modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/character/spawn_position.gd:3 - Parse Error: No class icon found at: res://addons/scaffolder/assets/images/editor_icons/spawn_position.png modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/control_row_list/text_control_row.gd:46 - Parse Error: The class "ControlRow" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/control_row_list/static_text_control_row.gd:21 - Parse Error: The identifier "text" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/control_row_list/text_control_row.gd:46 - Parse Error: The class "ControlRow" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/style_box_flat_scalable.gd:44 - Parse Error: The identifier "Sc" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR core/script_language.cpp:244 - Condition "!global_classes.has(p_class)" is true. Returned: String() res://src/gui/style_box_texture_scalable.gd:52 - Parse Error: The identifier "Sc" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR core/script_language.cpp:244 - Condition "!global_classes.has(p_class)" is true. Returned: String() res://src/platform_graph/surface/surface_side.gd:26 - Parse Error: The identifier "Sc" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/surface/surface.gd:207 - Parse Error: The class "SurfaceSide" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/annotators/annotation_elements/surface_annotation_element.gd:5 - Parse Error: Expected a constant expression. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/edge/models/surface_collision.gd:6 - Parse Error: The class "Surface" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/surfaces_tile_map.gd:3 - Parse Error: No class icon found at: res://addons/surfacer/assets/images/editor_icons/surfaces_tile_map.png modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/character/surface_contact.gd:5 - Parse Error: The class "Surface" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/surfaces_tile_map.gd:3 - Parse Error: No class icon found at: res://addons/surfacer/assets/images/editor_icons/surfaces_tile_map.png modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/surface/surface_store.gd:43 - Parse Error: The class "Surface" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/surface/surface_finder.gd:19 - Parse Error: The class "Surface" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/legend/legend_items/surface_legend_item.gd:5 - Parse Error: Expected a constant expression. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/surface_navigator.gd:1039 - Parse Error: The class "IntraSurfaceEdge" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/surfaces_tile_map.gd:3 - Parse Error: No class icon found at: res://addons/surfacer/assets/images/editor_icons/surfaces_tile_map.png modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/surface/surface_parser.gd:266 - Parse Error: The class "SurfacesTileMap" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/platform_graph_inspector/inspector_item_controllers/profiler_group/surface_parser_group_item_controller.gd:5 - Parse Error: Expected a constant expression. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/surface/surface_reachability.gd:20 - Parse Error: The identifier "Sc" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/surface/surface_side.gd:26 - Parse Error: The identifier "Sc" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/surfaces_tile_map.gd:3 - Parse Error: No class icon found at: res://addons/surfacer/assets/images/editor_icons/surfaces_tile_map.png modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/surface/surface_store.gd:43 - Parse Error: The class "Surface" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/surface/surface_type.gd:26 - Parse Error: The identifier "Sc" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/annotators/surfacer_annotation_parameters.gd:161 - Parse Error: The identifier "Sc" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/config/surfacer_annotations_manifest.gd:38 - Parse Error: The identifier "Sc" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/annotators/surfacer_annotators.gd:22 - Parse Error: Expected a constant expression. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/config/surfacer_bootstrap.gd:12 - Parse Error: The identifier "Sc" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/character/surfacer_character.gd:3 - Parse Error: No class icon found at: res://addons/scaffolder/assets/images/editor_icons/scaffolder_character.png modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/annotators/character_annotators/surfacer_character_annotator.gd:10 - Parse Error: The class "SurfacerCharacter" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/annotators/character_annotators/surfacer_character_position_annotator.gd:9 - Parse Error: The class "SurfacerCharacter" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/annotators/character_annotators/surfacer_character_recent_movement_annotator.gd:9 - Parse Error: The class "SurfacerCharacter" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/annotators/transient_annotators/surfacer_click_annotator.gd:12 - Parse Error: The class "Surface" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/annotators/transient_annotators/transient_annotator.gd:25 - Parse Error: The identifier "Sc" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/config/surfacer_colors.gd:52 - Parse Error: The class "ScaffolderColors" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/utils/surfacer_draw_utils.gd:10 - Parse Error: The class "Surface" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/utils/surfacer_geometry.gd:14 - Parse Error: The class "Surface" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR Cannot open file 'res://addons/surfacer/src/gui/panels/inspector_panel.tscn'. Failed loading resource: res://addons/surfacer/src/gui/panels/inspector_panel.tscn. Make sure resources have been imported by opening the project in the editor at least once. res://src/gui/surfacer_hud.gd:6 - Parse Error: Can't preload resource at path: res://addons/surfacer/src/gui/panels/inspector_panel.tscn modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/level/surfacer_level.gd:3 - Parse Error: No class icon found at: res://addons/scaffolder/assets/images/editor_icons/scaffolder_level.png modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/config/surfacer_level_config.gd:34 - Parse Error: The class "Choreographer" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/screens/surfacer_loading_screen.gd:39 - Parse Error: The class "Screen" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR modules/gdscript/gdscript.cpp:815 - Condition "err" is true. Returned: err Cannot load source code from file 'res://addons/surfacer/src/character/action/action_handlers/air_dash_action.gd'. Failed loading resource: res://addons/surfacer/src/character/action/action_handlers/air_dash_action.gd. Make sure resources have been imported by opening the project in the editor at least once. res://src/config/surfacer_movement_manifest.gd:9 - Parse Error: Can't preload resource at path: res://addons/surfacer/src/character/action/action_handlers/air_dash_action.gd modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/annotators/surfaces_annotator.gd:23 - Parse Error: The class "SurfaceStore" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/control_rows/surfaces_annotator_control_row.gd:34 - Parse Error: The class "AnnotatorType" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/platform_graph_inspector/inspector_item_controllers/surfaces_group/surfaces_group_item_controller.gd:5 - Parse Error: Expected a constant expression. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/platform_graph_inspector/inspector_item_controllers/surfaces_group/surfaces_of_side_item_controller.gd:15 - Parse Error: The class "PlatformGraph" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/surfaces_tile_map.gd:3 - Parse Error: No class icon found at: res://addons/surfacer/assets/images/editor_icons/surfaces_tile_map.png modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/control_row_list/text_control_row.gd:46 - Parse Error: The class "ControlRow" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/screens/third_party_licenses_screen.gd:10 - Parse Error: The identifier "width_override" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/utils/time/_time_tracker.gd:7 - Parse Error: The identifier "Sc" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/utils/time/time.gd:125 - Parse Error: The class "_TimeTracker" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/control_rows/displays/time_control_row.gd:19 - Parse Error: The identifier "Sc" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/control_rows/settings/time_scale_control_row.gd:12 - Parse Error: Expected a constant expression. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/control_rows/displays/total_plays_control_row.gd:19 - Parse Error: The identifier "Sc" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/annotators/transient_annotators/transient_annotator.gd:25 - Parse Error: The identifier "Sc" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/annotators/transient_annotator_registry.gd:9 - Parse Error: The class "TransientAnnotator" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/utils/utils.gd:246 - Parse Error: The identifier "Sc" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/platform_graph_inspector/inspector_item_controllers/valid_edge_item_controller.gd:5 - Parse Error: Expected a constant expression. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/legend/legend_items/valid_edge_trajectory_legend_item.gd:22 - Parse Error: The class "ColorParams" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/edge/utils/vertical_movement_utils.gd:10 - Parse Error: The class "EdgeCalcResultMetadata" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/character/action/action_handlers/wall_climb_action.gd:6 - Parse Error: Expected a constant expression. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/character/action/action_handlers/wall_dash_action.gd:6 - Parse Error: Expected a constant expression. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/character/action/action_handlers/wall_default_action.gd:6 - Parse Error: Expected a constant expression. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/character/action/action_handlers/wall_fall_action.gd:6 - Parse Error: Expected a constant expression. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/character/action/action_handlers/wall_jump_action.gd:6 - Parse Error: Expected a constant expression. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/character/behaviors/wander_behavior.gd:3 - Parse Error: No class icon found at: res://addons/surfacer/assets/images/editor_icons/wander_behavior.png modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/edge/models/waypoint.gd:105 - Parse Error: The class "Surface" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/edge/utils/waypoint_utils.gd:18 - Parse Error: The class "EdgeCalcResultMetadata" couldn't be fully loaded (script error or cyclic dependency). modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/platform_graph/edge/models/waypoint_validity.gd:47 - Parse Error: The identifier "Sc" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/welcome_panel.gd:13 - Parse Error: The identifier "modulate" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/gui/control_rows/settings/welcome_panel_control_row.gd:19 - Parse Error: The identifier "Sc" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/utils/time/_debouncer.gd:26 - Parse Error: The identifier "Sc" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/utils/time/_interval.gd:20 - Parse Error: The identifier "Sc" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/utils/time/_throttler.gd:26 - Parse Error: The identifier "Sc" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/utils/time/_time_tracker.gd:7 - Parse Error: The identifier "Sc" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR res://src/utils/time/_timeout.gd:19 - Parse Error: The identifier "Sc" isn't declared in the current scope. modules/gdscript/gdscript.cpp:585 - Method failed. Returning: ERR_PARSE_ERROR

It appears that Godot loses access to it's references if the scripts are moved. Recommend updating scripts to remain functional even if the developer needs to move the files.

Overwrites base project files

Since it dumps everything into the base project folder, it can overwrite data in the project. Should be separated into it's own named folder

Godot 4 version

Will the addon be ported to Godot 4 and when could this be?

Unable to Enable Plugins

As I extracted and added the addons to my Project folder, when I go to the Project Manager>Project settings> Plugins, as I click enable I see this statement

Unable to load addon script from path: 'res://addons/surfacer/src/plugin/surfacer_plugin.gd' There seems to be an error in the code, please check the syntax.

I'm sorry if this is a common issue but I've tried making a new project to see if it was my project's end but I still get this error

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.