Skip to content

Instantly share code, notes, and snippets.

@daichi-takezawa
Created April 23, 2021 06:35
Show Gist options
  • Save daichi-takezawa/6b4542a9730b4b6330c622aa2e759c2c to your computer and use it in GitHub Desktop.
Save daichi-takezawa/6b4542a9730b4b6330c622aa2e759c2c to your computer and use it in GitHub Desktop.
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using UnityEditor;
[CustomEditor(typeof(People))]
public class Historia : People
{
public override void AddWords()
{
talkingWords.Add("Hi!");
talkingWords.Add("Im historia");
talkingWords.Add("Bye!");
}
public override void Gender()
{
man = false;
audioPitch = 2.5f;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment