(Quote)
PM me the modified scene that has your own GameEngine, and I'll take a look.
(Quote)
That's as I did it, but could not recreate. This is with a Conversation automatically assigned?
(Quote)
That may be the issue. Does it work if you add this to the start of Update?
Menu menu = KickStarter.playerMenus.GetMenuWithCanvas (GetComponentInParent<Canvas> ());activeSpeech = menu.speech;
Alternatively, does it work if you map t…
Do the variables take the expected values when adjusting the sliders?
Open up the Save File Manager via the top of the Settings Manager. Are the audio volumes there set correctly?
Rather than linking your Sliders to variables, does it work if you…
Does the Debug.Log inside the final Update block (which runs when Submit is pressed) appear, or is it a case of inputCooldown being positive?
If other Menus are open, do they pause the game? If you want the cooldown to work while pause, use Time.u…
The Character: Animate Action can be used to animate a character - but the exact method involved depends on their "Animation engine".
The use of Timeline, to animate both the camera, and the character, is also potentially an option.
If you open up the Save File Manager, via the top of the Settings Manager, do the labels appear correctly there?
What are your AC/Unity versions, and can you share screenshots of the Action(s) involved? I will attempt a recreation.
The use of transparency sort axis, and the Sorting Map, are two methods of achieving the same result. If you're using both, it may be that they're conflicting with one another.
When using the Sorting Map, the sorting layer above the object will ne…
Welcome to the community, @darkgod90.
What is your Unity version? It was my understanding that Unity only supported positive Blendshape values.
If that's changed recently, and negative values are now supported, then I can certainly incorporate th…
Is the TMPro text component linked to AC? If you're using the script in the other thread, it shouldn't be so that the script has complete control over it. In this case, however, the typewriter effect option will have no effect.
You could incorpor…
Welcome to the community, @cignusgames.
Having touch input be properly recognised is a case of setting your Settings Manager's Input method to Touch Screen. This being a global setting, you would either need to alter this when porting to different…
VariablesManager refers to the original set of variables defined in Edit mode. At runtime, copies of them are made that can then be modified in-game without affecting the originals. These are accessed through GlobalVariables.
Are any other assets present that may force the display of the cursor? When using Unity UI, AC will disable it (using Cursor.visible), but it's still possible for a separate asset/script to undo this.
You could do it with a script attached to the spawned prefab:
using UnityEngine;using AC;public class SetSceneIndex : MonoBehaviour{ public string variableName; void Start () { GlobalVariables.GetVariable (variableName).IntegerValue…
This does it:
public Char character;public Marker moveMarker;public Marker faceMarker;public bool doMove;void Update (){ if (!doMove) return; if (Vector3.Distance (moveMarker.transform.position, character.transform.position) < 0.01f) { …