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:
parent
c18c705748
commit
2d8d522031
|
@ -3,7 +3,7 @@
|
||||||
## gdgifexporter
|
## gdgifexporter
|
||||||
|
|
||||||
- Upstream: https://github.com/jegor377/godot-gdgifexporter
|
- Upstream: https://github.com/jegor377/godot-gdgifexporter
|
||||||
- Version: git (201123154acfb9a1e00149fa708b4f13645d88dc, 2020)
|
- Version: git (b6a6628dc253acb5c2955bc9ca5c8eaa2eaf2e1a, 2021)
|
||||||
- License: MIT
|
- License: MIT
|
||||||
|
|
||||||
Files extracted from source:
|
Files extracted from source:
|
||||||
|
|
|
@ -13,9 +13,10 @@ class TreeNode:
|
||||||
var average_color: Array
|
var average_color: Array
|
||||||
var axis: int
|
var axis: int
|
||||||
var median: int
|
var median: int
|
||||||
var parent: TreeNode
|
# Comments is workaround for Godot memory leak bug
|
||||||
var left: TreeNode
|
var parent#: TreeNode
|
||||||
var right: TreeNode
|
var left#: TreeNode
|
||||||
|
var right#: TreeNode
|
||||||
|
|
||||||
|
|
||||||
func _init(_parent: TreeNode, _colors: Array):
|
func _init(_parent: TreeNode, _colors: Array):
|
||||||
|
|
Loading…
Reference in a new issue