From 5d096d4b8d61545b5ed2faa8c8f8ccdace455ace Mon Sep 17 00:00:00 2001 From: sim-bz Date: Mon, 16 Mar 2026 10:53:44 -0400 Subject: [PATCH 1/2] Fixed remaining instanceIDs issues. --- .../Runtime/Behaviours/CinemachineStoryboard.cs | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/com.unity.cinemachine/Runtime/Behaviours/CinemachineStoryboard.cs b/com.unity.cinemachine/Runtime/Behaviours/CinemachineStoryboard.cs index 8a2cf0433..dc4c09416 100644 --- a/com.unity.cinemachine/Runtime/Behaviours/CinemachineStoryboard.cs +++ b/com.unity.cinemachine/Runtime/Behaviours/CinemachineStoryboard.cs @@ -193,7 +193,11 @@ protected override void ConnectToVcam(bool connect) DestroyCanvas(); } +#if UNITY_6000_3_OR_NEWER + string CanvasName => "_CM_canvas" + gameObject.GetEntityId(); +#else string CanvasName => "_CM_canvas" + gameObject.GetInstanceID(); +#endif void CameraUpdatedCallback(CinemachineBrain brain) { From fdb1e87d6d84b9942619e705b415584051adffd0 Mon Sep 17 00:00:00 2001 From: sim-bz Date: Mon, 16 Mar 2026 10:54:55 -0400 Subject: [PATCH 2/2] Bumped version to 2.10.7 --- com.unity.cinemachine/CHANGELOG.md | 3 +++ com.unity.cinemachine/package.json | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/com.unity.cinemachine/CHANGELOG.md b/com.unity.cinemachine/CHANGELOG.md index fb5b22a5c..c610a50a1 100644 --- a/com.unity.cinemachine/CHANGELOG.md +++ b/com.unity.cinemachine/CHANGELOG.md @@ -4,6 +4,9 @@ All notable changes to this package will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html). +## [2.10.7] - 2026-03-16 + +- Converted code using InstanceID references and API to EntityID. ## [2.10.6] - 2026-02-23 diff --git a/com.unity.cinemachine/package.json b/com.unity.cinemachine/package.json index 490f4bad8..48b463e80 100644 --- a/com.unity.cinemachine/package.json +++ b/com.unity.cinemachine/package.json @@ -1,7 +1,7 @@ { "name": "com.unity.cinemachine", "displayName": "Cinemachine", - "version": "2.10.6", + "version": "2.10.7", "unity": "2022.3", "description": "Smart camera tools for passionate creators. \n\n--- ATTENTION ---\nUpgrading a project from Cinemachine 2.x to Cinemachine 3.x is not automatic and not trivial.\nDon't do it unless you're willing to put in the required effort.\n\n> For more details, refer to the upgrade guide:\nhttps://docs.unity3d.com/Packages/com.unity.cinemachine@3.1/manual/CinemachineUpgradeFrom2.html\n--------------------\n\n\n", "keywords": [ "camera", "follow", "rig", "fps", "cinematography", "aim", "orbit", "cutscene", "cinematic", "collision", "freelook", "cinemachine", "compose", "composition", "dolly", "track", "clearshot", "noise", "framing", "handheld", "lens", "impulse" ],