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

@ -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):