License headers.

This commit is contained in:
Relintai 2019-12-20 19:34:57 +01:00
parent 161a881511
commit 90a602a81f
4 changed files with 16 additions and 0 deletions

View File

@ -1,6 +1,10 @@
extends CharacterAtlas
class_name CharacterAtlas2D
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at https://mozilla.org/MPL/2.0/.
export(String, MULTILINE) var comments : String
export(Texture) var texture : Texture

View File

@ -1,6 +1,10 @@
extends CharacterAtlasEntry
class_name CharacterAtlasEntry2D
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at https://mozilla.org/MPL/2.0/.
export(Rect2) var front_rect : Rect2
export(Rect2) var back_rect : Rect2
export(Rect2) var right_rect : Rect2

View File

@ -1,4 +1,8 @@
extends ItemVisual
class_name ItemVisual2D
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at https://mozilla.org/MPL/2.0/.
export(Array, ItemVisualEntry) var entries : Array

View File

@ -2,6 +2,10 @@ tool
extends ItemVisualEntry
class_name ItemVisualEntry2D
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at https://mozilla.org/MPL/2.0/.
export (Texture) var front_texture : Texture
export (Texture) var back_texture : Texture
export (Texture) var left_texture : Texture