Search found 1 match

by picturatheartist
Tue Jul 23, 2024 4:12 pm
Forum: Dialogue System for Unity
Topic: I want to make the characterpersecond of the typewrittereffect to go faster if i held a button
Replies: 1
Views: 399

I want to make the characterpersecond of the typewrittereffect to go faster if i held a button

I'm trying to setup the typical scenario when you want the text to be typed faster when pressed a certain button, in my case A from gamepad. I set this on script to control it public void SetSpeedBoost(bool isBoosted) { this.isBoosted = isBoosted; if (typewriterEffect != null) { float newSpeed = isB...