1
0
Fork 0
This repository has been archived on 2022-10-04. You can view files and clone it, but cannot push or open issues or pull requests.
godot-thunderk-basics/preview/preview_2d.gd

26 lines
478 B
GDScript

tool
# Base for in-editor interactive previews
class_name Preview2D, "res://addons/thunderk-basics/preview/preview_2d.png"
extends Node2D
# -- signals --
# -- enums --
# -- constants --
# -- exported variables --
# -- public variables --
# -- private variables --
# -- onready variables --
# -- preloads --
# -- virtual methods --
# -- public methods --
# Method to reimplement to update the preview's content
func update_preview_content():
pass
# -- private methods --