It's not necessarily an issue, but you'll need to be aware of what overriding AC's default EventSystem entails.
AC's EventSystem replaces the Standalone Input Module with its own Optional Mouse Input Module component. This mainly handles two thing…
You can associate a Document with an Inventory item, as we discussed in this thread.
What you could also do is have an Inventory item property be reserved for its associated Document - i.e. create an Integer property for your items, and use that to…
(Quote)
Yes - you can assign a "Standard Use" interaction to the "Lay egg" Inventory item, which will run when clicked without any other item selected.
(Quote)
If the Interaction system is disabled, Hotspots will not be responsi…
Does the NavMesh encapsulate the colliders?
If you check Auto-stick to NavMesh?, remove/disable the colliders as they will not be necessary.
Are any custom scripts involved to prevent vertical movement on the Player?
As this is a visual problem, …
A fair bit to unpack here - and some of the latter is a little more advanced than standard inventory usage. If you're just getting started with AC, I'd recommend taking a look at this tutorial, as well as the Manual's "Inventory interactions&q…
Welcome to the community, @Bik.
What's your game's Movement method currently set to, and what are your AC/Unity versions?
When using Direct control in a 2D game, there are typically 2 ways to limit where the Player can move.
The first is to make …
Looks OK - and I can't recreate such an issue on my end.
What are the properties of the Menu this is in, and does it work if you temporarily switch the Menu's Source to Adventure Creator?
If you're looking to have the Hotspots be highlighted for t…
The FlashHotspots input will cause Hotspots to highlight in the same way that they're highlighted when selected - if set up to do so.
The exact method depends on the effect you're going for, but the Highlight component is necessary for each. For e…
Is your Camera orthographic?
If the positioning and layers are correct, then the next thing to check would be for the presence of overlapping colliders. Try disabling other objects in the scene that aren't necessary at this point, so see if they a…
Are you using Unity UI for menu display?
If so, you can make use of this script on the AC wiki, which hooks into the OnChangeLanguage custom event to alter the Fonts of menus when the language is changed:
https://adventure-creator.fandom.com/wiki/…
Documents and Inventory items are separate entities.
You can, however, have an Inventory item that represents a Document, and then set that Item's "Use" ActionList to one that runs the Document: Open Action to view the Document when click…
Thanks. The video shows the issue, but I'll need to see the Player's full Inspector (including their Rigidbody 2D) both before and after the issue occurs. It gets hidden in the video because the Player is a separate object for each scene - but if …
If you're using Blendshapes to animate the lipsyncing with Rogo, then there'll be a conflict with the Shapeable - since both are vying for control over the shapes.
It'd be best to stick to one or the other, but you could feasibly make use of a cust…
After looking into this: I'll be keeping these two variables separate, as there is a subtle difference.
However, I shall move the MAX_SAVES variable to a property in the SaveFileHandler scripts, which can be overridden through simple subclassing.
You can do this either from a custom Action, or by using the Object: Send message or Object: Call event Actions to trigger code in a custom script.
Any Manager field can be modified at runtime - just right-click its label to get an API reference to…
Inferring from your earlier post, am I to take it that this works until you remove the Character Controller?
There's nothing custom attached to the character - at least not that I can see. If you'd like, you're welcome to PM me a .zip of your proj…