Question by
St1ckN1nja · Jun 21, 2018 at 05:34 PM ·
androidunityeditortrailrenderertrailtrails
Trail Render Mobile Not changing colors but it does in Unity ?
My project Trails Change color when pressing GUI button in Unity but not on Android. Here is the code :
using UnityEngine;
public class Colorchange : Monobehaviour{
public TrailRenderer trail;
public Color colorLightPink; public Color colorTransparentLightPink;
public void TrailLightPink() { trail.startColor = colorLightPink; trail.endColor = colorTransparentLightPink; } }
Thanks for the help
Comment