The best way to tackle this is to take advantage of the fact that AC records the scene and position of any Player listed in the Settings Manager - even if they are never actually directly controlled by the user.
Conver the NPC to a Player (automate…
I can't reproduce such an issue on my end.
Are you using Unity's Input System package, or the regular Input Manager, and does the Hotspot interaction block gameplay?
It could be down to the duplicated Menu's RectTransform boundary.
In the case of the Inventory menu (and any duplicate you've made that hasn't had this changed), this is the Panel child object under the Canvas root.
When using Unity UI menus, the …
I'd need more details about what the exact issue is.
The GameCamera scripts are generally independent of the rest of AC, however, so you may be able to revert just the old GameCamera / GameCameraThirdPerson scripts to see if that made a difference.
Thanks for the project.
It seems this is down to the project's "Rendering Path" - the issue is gone in my copy your project if I open up the Graphic settings, and set the path from Deferred to Forward.
I'll add a note to the tutorial abo…
You'll need to use the same Hierarchy when playing your Animations that you used when creating it.
(Quote)
Not that I'm aware of, though you can try Unity's Discussions pages as this is a general Unity topic.
(Quote)
You can enable/disable GameObj…
What's the wider context of the code within the rest of your script?
I don't know what your Speech Manager settings are, but it's likely that your game needs to be placed in "Cutscene" mode for the speech to be considered gameplay-blockin…
Switching source shouldn't affect the assigned icon. I still can't reproduce such behaviour, however, so any steps/media you can share to clarify the actions taken will be welcome.
(Quote)
It normally should be - provided the animations are all correctly referencing the GameObjects.
You can try viewing the Animation window for your animations, from the Hrdina rig object, to see if referenced objects are missing - but this sou…
(Quote)
It is not a known issue, but rest assured if it is a bug then it will be fixed.
I cannot recreate the behaviour on my end, however. What are your AC and Unity versions?
After duplicating the Interaction element in the Menu, are you settin…
These errors all suggest that AC isn't being updated fully.
When you rolled back, did you delete the scripts that AC added in the newer version? The Actions mentioned in your first screenshot all look to be relatively recent. Deleting those files…
The main effects of a Lanaguage having Reads right-to-left? checked are:
* Scrolling effects are reversed (i.e. the last character is displayed first, the first last)
* Input boxes are reversed
* Dynamic labels are reversed per-word (e.g. "Use…
Welcome to the community, @Hexenwerk.
If your normal method of interaction is Choose Hotspot Then Interaction, then yes - you'll want to rely on item combinations (i.e. the Inventory system) for this. When an item is selected, it can then be used …
Are you moving the objects in the Hiearchy after creating the animations?
Unity requires that the Hierarchy remains as it was when the animations are created - you can't move the objects after the fact and have the animations still play.
So long a…
Thanks for the details.
(Quote)
In this case, it might be best to avoid the use of Slots and just rely on the Pieces - which give you the drag-and-drop behaviour - as well as a simple script to detect if the scraps are all where they should be.
Th…
AC will start up when you begin a scene that has its GameEngine GameObject present. You don't want to add this at runtime, but you could start your game with a non-AC scene, and then switch to your first AC scene when you're ready.
Alternatively, …