Forum rules - please read before posting.

Run Action List When Walk Script - use action list NOT from scene

Hi Chris, so, can you help me change the below script so the action list can be inserted NOT from the scene?

using UnityEngine;
using System.Collections;
using AC;

public class RunActionListOnWalk : MonoBehaviour
{
public ActionList myActionList;

void Awake()
{
}
void Start()
{

}
private void Update()
{
    if (KickStarter.player.IsMovingAlongPath())
    {
            myActionList.Interact ();
    }
}

}

Comments

Sign In or Register to comment.

Howdy, Stranger!

It looks like you're new here. If you want to get involved, click one of these buttons!

Welcome to the official forum for Adventure Creator.