Skip to content

Commit

Permalink
Merge pull request #6 from 98teg/fix-memory-leak
Browse files Browse the repository at this point in the history
Fix memory leak
  • Loading branch information
98teg authored Sep 19, 2023
2 parents af3a95f + 6f1dce5 commit a80f8dd
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion demo/addons/sprite_mesh/plugin.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@
name="SpriteMesh"
description="Allows you to generate 3D meshes based on a sprite."
author="Teggy"
version="2.0.0"
version="2.0.1"
script="plugin.gd"
2 changes: 1 addition & 1 deletion demo/addons/sprite_mesh/scripts/frame.gd
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
extends Object
extends RefCounted


const Frame := preload("./frame.gd")
Expand Down
2 changes: 1 addition & 1 deletion demo/addons/sprite_mesh/scripts/greedy_algorithm.gd
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
extends Object
extends RefCounted


const Quad = preload("./quad.gd")
Expand Down
2 changes: 1 addition & 1 deletion demo/addons/sprite_mesh/scripts/quad.gd
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
extends Object
extends RefCounted


const Quad = preload("./quad.gd")
Expand Down
2 changes: 1 addition & 1 deletion demo/scripts/sprite_mesh_example.gd
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
class_name SpriteMeshExample
extends Object
extends RefCounted


const TEXTURE_PATH := "res://assets/NinjaAdventure/%s.png"
Expand Down

0 comments on commit a80f8dd

Please sign in to comment.