AnimationTimer

scalafx.animation.AnimationTimer
See theAnimationTimer companion object
abstract class AnimationTimer(val delegate: AnimationTimer) extends SFXDelegate[AnimationTimer]

Wraps a $AT.

Value parameters

delegate

JavaFX $AT to be delegated.

Attributes

Constructor

Creates a new ScalaFX $AT from a JavaFX $AT.

Companion
object
Graph
Supertypes
trait SFXDelegate[AnimationTimer]
class Object
trait Matchable
class Any

Members list

Value members

Concrete methods

def handle(now: Long): Unit

This method needs to be overridden by extending classes.

This method needs to be overridden by extending classes.

Value parameters

now

The timestamp of the current frame given in nanoseconds. This value will be the same for all AnimationTimer's called during one frame.

Attributes

def start(): Unit

Starts the AnimationTimer's.

Starts the AnimationTimer's.

Attributes

def stop(): Unit

Stops the AnimationTimer's. It can be activated again by calling start.

Stops the AnimationTimer's. It can be activated again by calling start.

Attributes

Inherited methods

override def equals(ref: Any): Boolean

Verifies if a object is equals to this delegate.

Verifies if a object is equals to this delegate.

Value parameters

ref

Object to be compared.

Attributes

Returns

if the other object is equals to this delegate or not.

Definition Classes
SFXDelegate -> Any
Inherited from:
SFXDelegate
override def hashCode: Int

Attributes

Returns

The delegate hashcode

Definition Classes
SFXDelegate -> Any
Inherited from:
SFXDelegate
override def toString: String

Attributes

Returns

Returns the original delegate's toString() adding a [SFX] prefix.

Definition Classes
SFXDelegate -> Any
Inherited from:
SFXDelegate

Concrete fields

override val delegate: AnimationTimer

JavaFX object to be wrapped.

JavaFX object to be wrapped.

Attributes