OK. Here's an updated script that runs a given ActionList if the clicked Objective isn't failed:
using UnityEngine;using AC;public class ObjectiveClick : MonoBehaviour{ public string menuName = "Objectives"; public string elementNa…
Is the Subtitles menu's display set to be limited by proximity to the Player?
Otherwise, what are your AC/Unity versions, and do subtitles show if you set its Position to Manual, so that its always positioned in e.g. the centre of the screen?
For this situation, you can rely on Global Variables that are linked to Options Data.
When a variable is linked as such, its value will be stored as part of the Profile - rather than in any save-game associated with it.
This is normally used for c…
Recreated, thanks for the report.
It should be fixable by opening up AC's PlayerInput script, and looking for the line:
KickStarter.actionListManager.EndCutscene ();
(around line 248)
And then pasting immediately after:
ResetClick ();
Does tha…
If you need more control over the exact behaviour when clicking your objectives, it's best to rely on some (simple) custom scripting.
The easiest way to do this is to hook into AC's OnMenuElementClick custom event, which is called whenever the user…
AC won't reverse the characters of Menu element labels - it'll display as its imported. You'll want the text to be imported such that a static label displays correctly even if Reads right-to-left? is unchecked.
Could you share screenshots showing …
There should be no difference in how an ActionList is started when it comes to the effect it has.
Are you involving multiple Conversations, each with their own copy of the GKConversation script?
If you were to have the Interaction run your OnStart…
Good spot about the code error - apologies.
(Quote)
What the code does (or is intended to, at least), is check the positions of all the assigned "Scrap" GameObjects. Only if all the left-tagged objects are left of the threshold, and all …
If a Sorting Group is attached to the same object as your Follow Sorting Map component, then that will be affected instead of any individual Sprite Renderer.
I'm not sure what affect the Sorting Group would have on Spine objects, though.
You can t…
(Quote)
You'll need to split these into different files.
Once a footstep sound has started playing, it won't be interrupted if the character stops moving - doing so can be jarring, sound-wise, even if only one step is played.
What component are you assigning it to, though? If your existing UI prefab has a TextMesh Pro U GUI component, you can remove it and attach Unity's own Text component, which may accept the font.
What's your Cursor rendering mode?
The main rule to be aware of is that Unity UI canvases cannot be drawn atop AC menus - so if you use AC menus, you'll need to use either Software or Hardware cursor rendering.
I'm not clear on your issue with you…
Checking Affect children? should do it, as you've already done.
Is this issue limited to the Autosave? What's the behaviour if you manually save the scene after the opening cutscene, and then load it?
Blend Trees can give unexpected results when they involve the enabling/disabling of objects - as you're not dealing with a property that can be properly blended.
You should be able to get around this by enabling Angle snapping in the character's In…
By default, items will only show their active graphic when over a Hotspot that has an Interaction defined for that specific item.
You can have it show for all Hotspots, however, by checking Show Active FX when an Interaction is unhandled?.