You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
391 B
12 lines
391 B
using UnityEngine.Playables;
|
|
|
|
namespace UnityEngine.Rendering.HighDefinition
|
|
{
|
|
// This structure's only goal is to keep track of the limits of the clip to be able to
|
|
// correctly update the simulation time of the water
|
|
class WaterSurfacePlayableBehaviour : PlayableBehaviour
|
|
{
|
|
public double clipStart { get; set; }
|
|
public double clipEnd { get; set; }
|
|
}
|
|
}
|