Welcome to the comunity, @mchourdakis.
GameCameras are used as position references only - it'll be the MainCamera that is enabled at runtime, with its position being set by the active GameCamera. Keep the MainCamera enabled, and the GameCamera dis…
Welcome to the community, @abysan.
You can do this with a custom script that moves characters in a 2D grid. For a game like the one above, you'll first want to make use of Unity's Tilemap system to create your 2D scene.
Then, set the AC Scene Man…
Share screenshots of the NPC's root and Hotspot objects - this is what determines their interactivity.
Does the Interaction run correctly when run manually from the Inspector?
If your variable is used to keep track of how many items have been give…
Version 1.82.5:
* Changed: The LipSync Texture component can now affect all Mesh Renderers, as opposed to just Skinned Mesh Renderers
* Changed: "Mecanim layer" fields have been renamed to "Layer index", to better reflect their …
Yes, that's what I meant.
It looks like there may be two factors at play: the involvement of DS does have a difference, but the pause gameplay variant for AC-only dialogue should cause a smooth transition.
Can you PM me a sample scene, along with …
The label uses a variable token to display the amount of coins - [var:0] - where 0 represents the ID of a Global Integer variable.
Create such a Variable if you don't have one, named e.g. PlayerMoney, and then replace "0" with its ID.
Th…
You need to rely on PlayerPrefs for your save files. At the moment, only Options data is being stored in PlayerPrefs.
See the Manual's "Custom save formats and handling" chapter for details on how to switch over to SaveFileHandler_Player…
You'll need to rely on a "Camera Space" UI for your Menus and Cursor, which can be done by setting Menu Source values to Unity UI Prefab, and Cursor Rendering to Unity UI.
Thanks for the report, but I'm not sure I'm seeing that.
The effects of relativeIntensity are only seen in the ShapeKeyBlendshape class's Update function, which applies this as a value multiplier:
float finalIntensity = value * relativeIntensity /…
What do you have set up already, and what is your AC version?
The steps you've given above are generally the way to go: use the Timers Editor to create a Timer, with a Max value of the total duration of the countdown, in seconds. To have it go dow…
Using Input System isn't necessary for direct-navigation - but if you are using it, uncheck Auto Disable UI Clicks in your EventSystem_InputSystem prefab (the one assigned at the top of the Menu Manager).
Does it look different in a way other than just items being added to the item bar?
Panning up/down would be done with animation. You wouldn't affect the entire UI prefab - just a RectTransform that's a parent of what's visible. Move the parent, t…
You would need a custom script that gathers up all of the objects to affect, and then run the ActionList multiple times - using a parameter to change which Animator it affects.
Though, if you're doing all that only run a single Animate action, it's…