1
0
Fork 0
mirror of https://github.com/Orama-Interactive/Pixelorama.git synced 2025-01-18 09:09:47 +00:00

Update gdgifexporter addon - closes #387

Note that you need Godot 3.2.4+ for the issue to be solved, the leaks still seem to occur in Godot 3.2.3 and prior.
This commit is contained in:
Manolis Papadeas 2021-01-05 03:43:40 +02:00
parent c18c705748
commit 2d8d522031
2 changed files with 5 additions and 4 deletions

View file

@ -3,7 +3,7 @@
## gdgifexporter
- Upstream: https://github.com/jegor377/godot-gdgifexporter
- Version: git (201123154acfb9a1e00149fa708b4f13645d88dc, 2020)
- Version: git (b6a6628dc253acb5c2955bc9ca5c8eaa2eaf2e1a, 2021)
- License: MIT
Files extracted from source:

View file

@ -13,9 +13,10 @@ class TreeNode:
var average_color: Array
var axis: int
var median: int
var parent: TreeNode
var left: TreeNode
var right: TreeNode
# Comments is workaround for Godot memory leak bug
var parent#: TreeNode
var left#: TreeNode
var right#: TreeNode
func _init(_parent: TreeNode, _colors: Array):