diff options
author | kobewi <kobewi4e@gmail.com> | 2024-03-07 17:45:13 +0100 |
---|---|---|
committer | kobewi <kobewi4e@gmail.com> | 2024-03-07 18:01:30 +0100 |
commit | 7319b612f3512b5077279c51230b48b56622c564 (patch) | |
tree | 7889d55102be9e53a6d0fee270703542aadfc9c1 /core/io/resource.h | |
parent | aef11a14274f6f9e74ad91ead1d7c07ea1dd7f5f (diff) | |
download | redot-engine-7319b612f3512b5077279c51230b48b56622c564.tar.gz |
Speed up inspector updates for TileMap
Diffstat (limited to 'core/io/resource.h')
-rw-r--r-- | core/io/resource.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/io/resource.h b/core/io/resource.h index f0f686af57..cc8a0d4387 100644 --- a/core/io/resource.h +++ b/core/io/resource.h @@ -125,7 +125,7 @@ public: #ifdef TOOLS_ENABLED - uint32_t hash_edited_version() const; + virtual uint32_t hash_edited_version_for_preview() const; virtual void set_last_modified_time(uint64_t p_time) { last_modified_time = p_time; } uint64_t get_last_modified_time() const { return last_modified_time; } |