If you use Unity UI for your Menu, you can use an Animator + Trigger parameter to control the colours, and then invoke that parameter with an Object: Animate Action as part of the Button's click ActionList.
Does the bar only show in full, or not at all?
The value shown is based on Unity's recorded progress when loading the given scene, so it depends on what the scene contains. Is the scene so heavy such that it requires a loading scene?
AC should update the IDs of duplicates as they get made - the only objects to watch out for are inside the UI Object - not the rest of the scene.
I can't tell the cause from these details alone, but I would recommend using Unity UI Prefab mode as a…
The ID of an Objective isn't typically something that gets conveyed to the Player - it doesn't need to be in order on a technical level.
Drag-and-drop re-ordering is available as an optional feature. You can enable it from the Adventure Creator se…
Use the Inventory Manager's Categories tab to create a new String category, for Items, named e.g. "Description".
You'll then have a Description box at the bottom of each Item's properties you can type some text into.
Next, create a Globa…
What's your Menu's "Appear type", and what's your InventoryBox element's "When slot is empty** property set to? It sounds like the opposite - that the script is kicking in too late.
Is the UI in the scene, or a prefab?
Do you get any related messages in the Console, and - though there shouldn't be - are there any objects in the UI's Hierarchy that share the same Constant ID value?
The script above wouldn't affect the Description's visibility. You're saying that this last change caused it to go?
At this point, I would need to see the setup for myself to determine what's going on. If you can PM me your project (sans Library …
Input System is another layer of complexity - I would recommend leaving things as they are with Input Manager for the time being.
The issue with your Hotspot is that it has no Interactions defined - thus nothing to do when clicked.
A series of tut…
Were any of the scripts you modified related to the Action system?
The favourite Action code mainly consists of the FavouriteActionData class, and the various "Favourite" functions in the ActionsManager script. If you're using backups / …
A GameCamera2D will set its own position each frame - you won't be able to separately move it through Timeline.
Remove the GameCamera2D component, and attach AC's "Basic Camera" component (in the "Add Component" menu, choose &qu…
if blocks can go in a script's "using" section as well, so you can have something like this:
using UnityEngine;using System;#if STEAMWORKSusing Steamworks;#endif
(Quote)
Likely a separate issue. Best start with a new thread and full det…
This may be a Unity Animator issue - I don't see anything that relates to AC.
Does this occur if you copy the sprite child, move it out of the prefab so that it is its own object, and apply the same Animator parameter values?
Thank you for your continued patience.
Let's try this:
using UnityEngine;using AC;public class ForceSelectObjective : MonoBehaviour{ void OnEnable() { if (KickStarter.runtimeObjectives == null || KickStarter.runtimeObjectives.Selected…
Sorry to ask the obvious, but btnSlot3 definitely has the component set up in the same way, and is linked to the Menu Manager? That neither of the logs show up for it in the Console suggests the event itself is not being fired at all.