Search found 7 matches
- Tue Mar 05, 2019 5:13 pm
- Forum: Dialogue System for Unity
- Topic: "Undertale style" audio clips while text is written?
- Replies: 13
- Views: 4011
Re: "Undertale style" audio clips while text is written?
Sorry, we actually use version 2017.4.2f2
- Tue Mar 05, 2019 12:32 pm
- Forum: Dialogue System for Unity
- Topic: "Undertale style" audio clips while text is written?
- Replies: 13
- Views: 4011
Re: "Undertale style" audio clips while text is written?
Thank you for the code, although opening the package lists a "missing prefab" so all we get is a blue background, the sphere and the cube with a changing texture. We've tried updating the conversation system asset as well (since our project uses the previous version) but still it no luck.
- Tue Mar 05, 2019 6:47 am
- Forum: Dialogue System for Unity
- Topic: "Undertale style" audio clips while text is written?
- Replies: 13
- Views: 4011
Re: "Undertale style" audio clips while text is written?
Update: We've been working on it and in theory it *should* be working, we're getting no syntax errors or anything. We changed the Mouth_Flap script and added the FlapWhileTyping to the Subtitle Text gameobject (located in the NPC Subtitle Panel, in our Dialogue UI prefab), but it doesn't seem to wor...
- Fri Mar 01, 2019 1:50 pm
- Forum: Dialogue System for Unity
- Topic: "Undertale style" audio clips while text is written?
- Replies: 13
- Views: 4011
Re: "Undertale style" audio clips while text is written?
Got it! Thank you so much for the help.
Team Sycamore
Team Sycamore
- Thu Feb 28, 2019 8:23 am
- Forum: Dialogue System for Unity
- Topic: "Undertale style" audio clips while text is written?
- Replies: 13
- Views: 4011
Re: "Undertale style" audio clips while text is written?
We're not sure if any of those apply, since we're not using an animation but a script that makes the gameobject switch between 2 different materials. public class Mouth_Flap : MonoBehaviour { public Material[] material; Renderer rend; void Start () { rend = GetComponent<Renderer> (); rend.sharedMate...
- Tue Feb 26, 2019 1:37 pm
- Forum: Dialogue System for Unity
- Topic: "Undertale style" audio clips while text is written?
- Replies: 13
- Views: 4011
Re: "Undertale style" audio clips while text is written?
Thank you Tony! That was way easier than we thought, we were trying to add it with a custom sequence. Following on the Animal Crossing style of dialogue, we have a script that switches two textures on the character's face, one with its mouth open and the other closed. Can we make it so this script g...
- Mon Feb 25, 2019 10:30 am
- Forum: Dialogue System for Unity
- Topic: "Undertale style" audio clips while text is written?
- Replies: 13
- Views: 4011
"Undertale style" audio clips while text is written?
Hello! We're a group of students who are developing an RPG with visual novel elements. We have been following the video tutorial series on how to use the Dialogue System asset, but we can't quite figure this out. We'd like to add a series of short audio sounds to play while a character is talking, a...