This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| extends Node2D | |
| class LoopCreator: | |
| func is_type(type): return type == "LoopCreator" or .is_type(type) | |
| func get_type(): return "LoopCreator" | |
| signal loop(points_array) | |
| var _points_array = PoolVector2Array() | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| @tool | |
| class_name BinarySerializer # RefCounted (Static) | |
| ## Comprehensive binary serialization system for built-in data types. | |
| const _BITS08 := 1 | |
| const _BITS16 := 2 | |
| const _BITS32 := 4 | |
| const _BITS64 := 8 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| extends VBoxContainer | |
| const FONT_SIZE = 40 | |
| var android_runtime: Object | |
| var location_manager: JavaObject | |
| var output_label: Label | |
| var normal_label_settings:LabelSettings |
OlderNewer