Can you share shots of the character's root Inspector, and their Animator's Base layer?
If your character's Animation engine is set to Sprites Unity, then the expected animations (listed if you click List expected animations?), will need to be pres…
When a detector is in use, any Hotspot within it is considered potentially "close enough" - by default. Are you looking to further limit selection to a given distance within the detector?
If you set your Hotspot detection method to Custo…
It's a case of working with the Controller asset that the Animator makes use of, as well as the animations within it.
This is involving Unity's animation workflow - not AC specifically. With the way your Unity UI Cursor component is configured, AC…
Welcome to the community, @Chucker_Dewer.
What is your AC version? If you uncheck the Container: Check Action's Affect active container? option, the Container field that then appears should indeed be overridable with a GameObject parameter.
If yo…
Editing an item's category involves making changes to the Inventory Manager asset. I don't recommend making such changes - an item's category should remain fixed.
An example of the use of item properties for this kind of situation can be found in …
The Interaction menu has Pauses game? checked, and Directly-navigate Menus while paused? is also checked at the top of the Menu Manager. The latter option means that the menu will be navigated with the gamepad / keyboard keys, which will hide the c…
They are to do with the state of your scene.
In a typical 2D scene, both a NavMesh and a Sorting Map need to be set up. The NavMesh describes the area of the scene that characters can move around, and the Sorting Map describes how character sprite…
Did they appear immediately after the update? They're warnings, rather than errors - informing about issues related to the input system, and your characters's animation.
The input warnings will appear if the Controls asset, part of the downloadabl…
(Quote)
No, it would go in the updated import script that is amended to process the additional column.
(Quote)
That's a question for Pixel Crushers, but it's my understanding that the two assets both provide their own take on the same underlying fu…
Yes, I was premature with that fix, sorry.
Instead, go to line 283:
soundToPlayFrom.audioSource.PlayOneShot (clip, localVolume);
And replace with:
soundToPlayFrom.audioSource.PlayOneShot (clip, localVolume * soundToPlayFrom.relativeVolume);
Wha…
Please let me know the details above re: your custom code. This is an appreciably difficult issue to convey, but I must know as much detail as you can provide.
I do not need the full project - create a paired-back copy that only has a couple of sc…
Welcome to the community, @SuperXu.
Is this for a 2D or 3D game? Try reducing the Destination accuracy field in the Settings Manager.
There are a few other options available, but it depends on your scene and character setup. The Manual's "P…
To reduce the number of items shown at once, reduce the InventoryBox element's Max number of slots value. If Unity UI is used to render the Menu, similarly remove unwanted linked Buttons.
To have auto-scrolling, you'll need to use Unity UI, and al…
A HashSet still needs its contents checked before an addition/removal attempt is made, but you're right about it increasing the count.
Replace the Update function with this:
protected void Update (){ if (detectionMethod == TriggerDetectionMetho…
Does this occur in the 3D Sample Scene, accessible from /Assets/AdventureCreator/Scripts/Templates?
If so, PM me your Managers and I'll attempt a recreation on my end.
An InventoryBox element doesn't store items - only displays them from a separate source, such as a Container.
If you've manually mapped a Container to such an element, you can read its OverrideContainer property to extract it:
MenuInventoryBox inv…
What are your AC/Unity versions, does your scene have a NavMesh set up for characters to rely on when pathfinding, and do you get any related messages in the Console?
The camera and player's motion are two separate operations. Share full details of the original issue, including steps to recreate, and I can look into an official fix.