Keyframe
class Keyframe
An object used to group a set of keyvalues which share a common time.
-
The keyframe’s time.
Declaration
var time: Double { get } -
A set of keyvalues which share a common time.
Declaration
var keyvalues: Array { get } -
The object’s description
Declaration
var description: String { get } -
Compares two values for equality.
The
equalsfunction is invoked using infix notation as in the following code snippet:lhs == rhs.Declaration
func equals(_ lhs: Track) -> BoolParameters
lhsA value.
rhsAnother value.
Return Value
trueif thelhsandrhsare equal,falseotherwise.