Question by
Mr-Chuckchucky · Oct 16, 2019 at 04:56 PM ·
timeline
Where find UnityEngine.Timeline.dll for 2019.1.9 ?
Hi there,
I'm working on my own dll and I have a problem, when I try to create a PlayableAsset, Visual can't find Timeline.dll.
using UnityEngine;
using UnityEngine.Playables;
using UnityEngine.Timeline;
public class PlayableWave : PlayableAsset, ITimelineClipAsset
{
public ClipCaps clipCaps
{
get
{
return ClipCaps.None;
}
}
}
I tried to add the reference, but the only one I found is in 2018. So I tried to compile and add my dll on my project, but I get this error :
Can anybody help me please ?
errors.png
(9.9 kB)
Comment