From 7ac6ae698776c4b99636034b709808ebbb842976 Mon Sep 17 00:00:00 2001 From: Mario Zechner Date: Thu, 22 May 2025 16:48:24 +0200 Subject: [PATCH] [haxe] Fix update cache compilation error --- spine-haxe/spine-haxe/spine/Skeleton.hx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/spine-haxe/spine-haxe/spine/Skeleton.hx b/spine-haxe/spine-haxe/spine/Skeleton.hx index c3f70b9cd..d747bb667 100644 --- a/spine-haxe/spine-haxe/spine/Skeleton.hx +++ b/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; + public var getUpdateCache(get, never):Array; - private function get_updateCache():Array { + private function get_getUpdateCache():Array { return _updateCache; }