I can only speak generally without seeing the specifics of your setup / desired behaviour, but a separate scene shouldn't strictly be necessary. You could spawn in the animation as a prefab, and/or use Timeline to handle the animation.
You've said you modified AC to call SetTrigger to allow for this - which lines, exactly?
The latest release has made this change officially. It would be worth testing it in a backup/duplicate project.
To be clear on the problem: it's that the IsControllerConnected parameter isn't linking to the Variable?
The video shows a warning in the component about the variable's Link to field not being set to Custom Script. Is this the case?
Is your video being pulled from Youtube? The logs mention a Youtube link being blocked. It sounds like this is an issue with WebGL being able to access the video you're referencing.
@armaan Would you mind giving this script a test? It's an adaption of your changes with some tweaks:
using UnityEngine;#if ENABLE_INPUT_SYSTEMusing UnityEngine.InputSystem;#endifusing AC;namespace StarterAssets{ public class StarterAssetsInputs…
Are you using Input System or Input Manager for your input handling?
The issue may be that AC relies on mouse input when testing touch-screen games in the Editor, and - if I understand correctly - Simulator mode is still considered "in Editor&…
Your clicked parameter is not being stored as the slot index, but the slot ID, which are not always the same.
Change the Save: Manage saves Action's Save to delete to Set Save ID.
You'll want to move the Player using the Character: Move to point Action, not the Hotspot's Walk To Marker option, with Wait until finish? unchecked. The Camera: Fade Action should then have Wait until finish? checked, followed by the Scene: Switch…
Are the parameter values correct at runtime?
Since your Hit state is the default, you'll need to ensure Can Transition To Self is checked in the transition's properties so that it can re-start the Hit state if it's already playing.
What are your AC/Unity versions, and what platform are you building to?
Is the background music that plays a part of either the 2nd or 3rd scene, suggesting it's loading but not visible?
Are you loading scenes via Build Settings, or via Addressabl…
Welcome to the community, @LenaB.
To understand the situation: do you have both the Mobile Joystick and Input System Integration templates installed, such that you're looking to control your character using the on-screen joystick, with Unity's Inpu…
Third-party assets won't show inside Unity if there is a compilation error.
The error is coming from the presence of the AnimEngine_Sprites2DToolkit script file, which is deprecated and no longer a part of AC.
Delete this file, and AC should re-co…
(Quote)
Can you share a screenshot? The only one I've seen is that of the Input System Integration.
Bear in mind that when importing Templates into an existing project, all are shown - 2D and 3D included.
(Quote)
Hard to say. But, the integratio…
Version 1.85.2:
* Added: Support for URP in 2.5D games - the URP_25D component is automatically added to the MainCamera when creating 2.5D GameCameras
* Added: Minor tweaks to first-person movement
* Fixed: Group context menus not showing in Action…