Quellcode durchsuchen

[haxe] Fix update cache compilation error

Mario Zechner vor 3 Monaten
Ursprung
Commit
7ac6ae6987
1 geänderte Dateien mit 2 neuen und 2 gelöschten Zeilen
  1. 2 2
      spine-haxe/spine-haxe/spine/Skeleton.hx

+ 2 - 2
spine-haxe/spine-haxe/spine/Skeleton.hx

@@ -464,9 +464,9 @@ class Skeleton {
 	}
 
 	/** The list of bones and constraints, sorted in the order they should be updated, as computed by {@link #updateCache()}. */
-	public var updateCache(get, never):Array<Updatable>;
+	public var getUpdateCache(get, never):Array<Updatable>;
 
-	private function get_updateCache():Array<Updatable> {
+	private function get_getUpdateCache():Array<Updatable> {
 		return _updateCache;
 	}