package vecosek-scene

  1. Overview
  2. Docs

The main unit of loop in the Scene is the Track.t.

type t = Scene_format_t.track = {
  1. id : Id.t;
  2. events : Ticked_action.t list;
  3. length : int;
  4. name : string;
    (*

    Display name

    *)
}
val make : ?events:Ticked_action.t list -> id:Id.t -> length:int -> string -> t
val fresh : ?events:Ticked_action.t list -> length:int -> string -> t

Create a track like make but Id.fresh.

val id : t -> Id.t