Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,13 @@ public double getLength() {
return length;
}

protected void setLength(double length) {
/**
* Alter the length (duration) of this Action. This can be used to extend
* or truncate an Action.
*
* @param length the desired length (in unscaled seconds, default=0)
*/
public void setLength(double length) {
this.length = length;
}

Expand Down