Abigail Porier
- Total activity 32
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 1
- Subscriptions 13
Comments
Recent activity by Abigail Porier Sort by recent activity-
How to I get the TweenManager? It doesn't show up in helper scripts.
-
Figured it out! color.a -= getDeltaTime() * script.fadeTime; color.a = Math.max(color.a, 0.0); script.mySpriteVisual.mainPass.baseColor = color;
-
Figured it out! color.a -= getDeltaTime() * script.fadeTime; color.a = Math.max(color.a, 0.0); script.mySpriteVisual.mainPass.baseColor = color;
-
Which part of the code would I edit to do that?
-
// -----JS CODE----- // Properties: //@input Component.SpriteVisual mySpriteVisual //@input float fadeTime = 0.5 var needToFadeIn = false; var needToFadeOut = false; script.mySpriteVisual.getMa...
-
Thanks! The problem was that I had typed in the incorrect blend ID.
-
How can you make it fade back in? Thanks!