###実現したいこと
AraTrailという有料アセットを購入し、それをscriptからAddcomponentしてオブジェクトに追加したいです。
しかしエラーがでてしまいました。
これが表示したいコンポーネントです。
###エラー
Assets\Sclipt\adc.cs(12,27): error CS0246: The type or namespace name 'AraTrail' could not be found (are you missing a using directive or an assembly reference?)
翻訳などもしてみたのですが分かりませんでした。このエラーを解消する方法はありますか。
###コード
c#
1using System.Collections; 2using System.Collections.Generic; 3using UnityEngine; 4 5public class adc : MonoBehaviour 6{ 7 public GameObject cube; 8 9 // Start is called before the first frame update 10 void Start() 11 { 12 cube.AddComponent<AraTrail>(); 13 } 14 15 // Update is called once per frame 16 void Update() 17 { 18 19 } 20}
###試したことなど
AraTrailはUnityにデフォルトで装備されているTrailRendererを強化したものです。
TrailRendererはエラーが出ずに私がやりたいことができるのですが、AraTrailはどうしても分かりません。
どなたか知っている方はいませんでしょうか。