Skip to content

Instantly share code, notes, and snippets.

@Jakob-PB
Last active August 2, 2020 21:35
Show Gist options
  • Save Jakob-PB/154c903474e6b2a8a331a831d9cef6ac to your computer and use it in GitHub Desktop.
Save Jakob-PB/154c903474e6b2a8a331a831d9cef6ac to your computer and use it in GitHub Desktop.
My default template for new GDScript files.
#------------------------------------------------------------------------------#
# Copyright (c) 2020, Jakob Bjerkness. All rights reserved. #
#------------------------------------------------------------------------------#
#
# [Class Overview]:
#
extends %BASE%
#------------------------------------------------------------------------------#
# Exports #
#------------------------------------------------------------------------------#
#------------------------------------------------------------------------------#
# Signals #
#------------------------------------------------------------------------------#
#------------------------------------------------------------------------------#
# Public Variables #
#------------------------------------------------------------------------------#
#------------------------------------------------------------------------------#
# Private Variables #
#------------------------------------------------------------------------------#
#==============================================================================#
# Getters/Setters #
#==============================================================================#
#==============================================================================#
# Public Functions #
#==============================================================================#
#==============================================================================#
# Notifications #
#==============================================================================#
func _ready() -> void:
pass
#==============================================================================#
# Overrides #
#==============================================================================#
#==============================================================================#
# Virtual Functions #
#==============================================================================#
#==============================================================================#
# Callbacks #
#==============================================================================#
#==============================================================================#
# Private Functions #
#==============================================================================#
################################################################################
# Inner Classes #
################################################################################
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment