Adventure Creator Wikia
(Adding categories)
Tag: categoryselect
mNo edit summary
Tags: Visual edit apiedit
Line 2: Line 2:
   
 
<p style="font-weight:normal;font-size:14px;line-height:22px;">Author's quote:</p>
 
<p style="font-weight:normal;font-size:14px;line-height:22px;">Author's quote:</p>
This as a means to have emotions/mouth movement that plays with text (no audio) and limit the .asset files to just a handful - short speech, medium speech, long speech. I also use it for asset files that just sync gestures and emotions. 
+
Use this as a means to have emotions/mouth movement that plays with text (no audio) and limit the .asset files to just a handful - short speech, medium speech, long speech. I also use it for asset files that just sync gestures and emotions. 
  +
  +
To use it replace the text in a .cs file named <span style="font-size:14px;line-height:22px;">RogoLipSync_Stop</span> with this text, or create a new blank text file, then paste the text and rename the file <span style="font-size:14px;line-height:22px;">RogoLipSync_Stop</span>.cs. Then drop the file into the folder named actions inside the Adventure creator folder. Then, just use the action in an action list.
   
 
<span style="font-size:14px;font-weight:normal;line-height:22px;">The code for the Stop action is as follows:</span>
 
<span style="font-size:14px;font-weight:normal;line-height:22px;">The code for the Stop action is as follows:</span>

Revision as of 04:31, 4 September 2016

Note: This is an alternative integration for Rogo LipSync and is intended to allow emotions and mouth movement to be played independently from any audio. The integration consists of three AC actions. These will be posted in separate articles to avoid clutter.

Author's quote:

Use this as a means to have emotions/mouth movement that plays with text (no audio) and limit the .asset files to just a handful - short speech, medium speech, long speech. I also use it for asset files that just sync gestures and emotions. 

To use it replace the text in a .cs file named RogoLipSync_Stop with this text, or create a new blank text file, then paste the text and rename the file RogoLipSync_Stop.cs. Then drop the file into the folder named actions inside the Adventure creator folder. Then, just use the action in an action list.

The code for the Stop action is as follows:

using UnityEngine;
using System.Collections;
using RogoDigital.Lipsync;


#if UNITY_EDITOR
using UnityEditor;
#endif

namespace AC
{
    [System.Serializable]
    public class RogoLipSync_Stop : Action
    {
        public bool isPlayer;
        public LipSync lipSyncTarget;
        private LipSyncData dataClip;
        
        public RogoLipSync_Stop()
        {
            this.isDisplayed = true;
            category = ActionCategory.Custom;
            title = "Rogo LipSync - Stop";
            description = "Stops a LipSyncData clip on a LipSync component when a LipSync animation is already playing.";
            isPlayer = true;

        }

        override public float Run()
        {
            if (isPlayer)
            {
                lipSyncTarget = KickStarter.player.GetComponent<LipSync>();

                if (lipSyncTarget == null)
                {
                    Debug.LogWarning("RogoLipSync_Play: No LipSync component found on Player.");
                    return 0f;
                }
            }

            lipSyncTarget.Stop(dataClip);
            return 0f;
        }


        override public void Skip(){

        }



#if UNITY_EDITOR
        override public void ShowGUI()
        {
            isPlayer = EditorGUILayout.Toggle("Is player?", isPlayer);

            if (!isPlayer)
            {
                lipSyncTarget = (LipSync)EditorGUILayout.ObjectField("Character:", lipSyncTarget, typeof(LipSync), true);
            }
            AfterRunningOption();
        }
#endif
    }
}

-Original code provided by user Larsos-