Lesson 8

Table of Contents

Creating Diversity Using Game Parameters: SetRTPCToDistance

(go to Creating Diversity Using Game Parameters)

using System.Collections;
using System.Collections.Generic;
using UnityEngine;

public class SetRTPCToDistance : MonoBehaviour {
    public AK.Wwise.RTPC GameParameter;
    public Transform OtherTransform;

    // Update is called once per frame.
    void Update () {
      float distance = Vector3.Distance(OtherTransform.position, transform.position);
      GameParameter.SetGlobalValue(distance);
    }
}

Was this page helpful?