Abigail Porier
- النشاط الكلي 32
- النشاط الأخير
- عضو منذ
- يتابِع 0 مستخدم
- متابَع من 0 مستخدم
- أصوات 1
- الاشتراكات 13
تعليقات
النشاط الحديث بواسطة Abigail Porier الترتيب حسب النشاط الحديث-
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!