17 lines
412 B
C#
17 lines
412 B
C#
using UnityEngine;
|
|
|
|
namespace ScenesScripts.GalPlot
|
|
{
|
|
|
|
public class GalManager_CharacterMessage : MonoBehaviour
|
|
{
|
|
[SerializeField]
|
|
public GalManager_CharacterAnimate Gal_CharacterAnimate;
|
|
public void HandleMessage (string MessageContent)
|
|
{
|
|
|
|
Gal_CharacterAnimate.Animate_type = MessageContent;
|
|
Gal_CharacterAnimate.HandleMessgae();
|
|
}
|
|
}
|
|
} |