Wikitude SDK API Reference

API Docs for: 4.1.1
Show:

VideoDrawable Class

Extends Drawable2D
Module: AR

VideoDrawable encapsulates a video to be used as visual representation of an ARObject. The video must be encoded using the H.264 video compression standard.

The default anchor settings for a VideoDrawable are as follows:

  • horizontal anchor: AR.CONST.HORIZONTAL_ANCHOR.CENTER
  • vertical anchor: AR.CONST.VERTICAL_ANCHOR.MIDDLE

VideoDrawables can be rendered with transparent pixels. See here for details. On creation, setup parameters can be passed to customize the properties of the VideoDrawable.

Example:
 var video = new AR.VideoDrawable("assets/video.mp4", 0.5, {
   offsetX: 0.2,
   offsetY: 0.2
   });

Constructor

VideoDrawable

(
  • uri
  • height
  • options
)

Parameters:

  • uri String

    The URI to the video.

  • height Float

    The height of the VideoDrawable, in SDUs. The height is set at creation time, width is calculated according to the aspect ratio of the video.

  • options Object optional

    Setup-Parameters to customize additional object properties.

    Accepted options-properties are

    • enabled (defaults to true) Boolean optional
    • mirrored (defaults to true) Boolean optional
    • horizontalAnchor Number optional
    • verticalAnchor Number optional
    • offsetX (defaults to 0) Number optional
    • offsetY (defaults to 0) Number optional
    • zOrder (defaults to 0) Number optional
    • rotation (defaults to 0) Number optional
    • scale (defaults to 1) Number optional
    • opacity (defaults to 1) Number optional
    • onClick Function optional
    • onFinish Function optional
    • roll (defaults to 0) Number optional
    • tilt (defaults to 0) Number optional
    • heading (defaults to 0) Number optional
    • onLoaded Function optional
    • onPlaybackStarted Function optional
    • onFinishedPlaying Function optional
    • onError Function optional
    • isTransparent Boolean optional

Methods

destroy

()

Inherited from ARchitectObject

Destroys the object.

getBoundingRectangle

() BoundingRectangle

Inherited from Drawable2D

Returns the BoundingRectangle for this Drawable2D. In case of an error, null will be returned.

Returns:

BoundingRectangle:

the BoundingRectangle for the Drawable2D

getUri

() String

Returns the URI the VideoDrawable is pointing to

Returns:

String:

the URI, as set at creation time.

isTransparent

() Boolean

Returns whether the VideoDrawable has the transparent flag set

Returns:

Boolean:

The isTransparent setting.

pause

()

Pauses playing this video. To resume from the time the file was paused, call resume(). If play() is called on a paused file, the play will start from the very beginning.

play

(
  • loopTimes
)

Plays the video.

Parameters:

  • loopTimes (defaults to 1) Number optional

    Defines how often the video should be played in a row. A negative value indicates an infinite looping.

resume

()

Allows a paused video to resume playing from the time the file was paused. In any other cases, resume() has the same effect as calling play(1).

stop

()

Stops playing this video. onFinishedPlaying() will not be triggered after stop() has been called.

Properties

destroyed

Boolean

Inherited from ARchitectObject

Indicates if the object has already been destroyed.

enabled

Boolean

Inherited from Drawable

Flag to enable/disable the Drawable. If the Drawable is disabled, it will never appear on the screen and triggers on this Drawable will never be fired. In case it is enabled, it can be rendered on the screen and fire triggers.

Default: true

heading

Number deprecated

Inherited from Drawable

Deprecated: Use rotate.heading instead.

height

Number

The VideoDrawable's height in SDUs. The width of the VideoDrawable will be calculated accordingly based on the aspect ratio of the playing video.

horizontalAnchor

Number

Inherited from Drawable2D

The horizontal anchor defines which pixel (in a horizontal pixel row) of the Drawable2D will be placed right at the screen position of the GeoObject represented by the Drawable2D.

Valid values are defined in AR.CONST.HORIZONTAL_ANCHOR. For example, if LEFT is set as horizontal anchor of an ImageDrawable, the image's left edge will match the calculated position of the Drawable2D.

The default horizontal anchor points is dependent on the concrete class of the Drawable2D.

mirrored

Boolean

Inherited from Drawable

Flag to enable/disable mirroring for this Drawable. When using the front camera, a mirrored drawable will be rotated 180 degree around its y axis.

Default: true for generic drawables, false for labels and HTMLDrawables

offsetX

Number

Inherited from Drawable2D

The horizontal offset to the calculated position of the Drawable2D, in SDUs. A positive offsetX causes the Drawable2D to move right, a negative offsetX causes it to move left.

Default: 0

offsetY

Number

Inherited from Drawable2D

The vertical offset to the calculated position of the Drawable2D, in SDUs. A positive offsetY causes the Drawable2D to move up, a negative offsetY causes it to move down.

Default: 0

opacity

Number

Inherited from Drawable2D

A value within the interval from 0.0 to 1.0 defining the opacity of the entire Drawable2D. A value of 0 indicates full transparency, a value of 1 indicates full opacity.

Default: 1

roll

Number deprecated

Inherited from Drawable

Deprecated: Use rotate.roll instead.

rotate.heading

Number

Inherited from Drawable

Defines a rotation of the Drawable around the y-axis, specified in degrees. Values will be applied modulo 360. A value of 361 degrees has the same effect as setting the value to 1 degree.

Default: 0

rotate.roll

Number

Inherited from Drawable

Defines a rotation of the Drawable around the z-axis, specified in degrees. Values will be applied modulo 360. A value of 361 degrees has the same effect as setting the value to 1 degree.

Default: 0

rotate.tilt

Number

Inherited from Drawable

Defines a rotation of the Drawable around the x-axis, specified in degrees. Values will be applied modulo 360. A value of 361 degrees has the same effect as setting the value to 1 degree.

Default: 0

rotation

Number

Inherited from Drawable2D

Defines the rotation of the Drawable, in degrees, with the rotation axis perpendicular to the screen plain. For example, setting rotation to 45.0 on a square plain image turns it into a rhombus. A positive value defines a rotation in clockwise direction, a negative value defines a rotation in anti-clockwise direction. Rotation can influence the BoundingRectangle of the Drawable (for example, when a Rectangle is rotated).

Note, rotation is applied in addition to any roll-tilt-heading rotations defined. Rotation specifies the rotation on the screen, with the origin of the rotation being the center of the Drawable2D, including any offsets etc.

Default: 0

scale

Number

Inherited from Drawable2D

The scale factor for the Drawable2D. A scale factor greater than 1 enlarges the drawable, a scale factor less than 1 shrinks it down. Only values greater than or equal to 0 are allowed. A scale factor of 0 makes the Drawable2D invisible. A scale factor of 2 doubles the size of the Drawable2D, a scale factor of 0.5 halfs the size of the Drawable2D. Scale will influence the BoundingRectangle of the Drawable, but it will not influence the original properties of the Drawable2D.

Default: 1

scaling

Number deprecated

Inherited from Drawable2D

Deprecated: Use scale instead.

tilt

Number deprecated

Inherited from Drawable

Deprecated: Use rotate.tilt instead.

verticalAnchor

Number

Inherited from Drawable2D

The vertical anchor defines which pixel (in a vertical pixel column) of the Drawable2D will be placed right at the screen position of the GeoObject represented by the Drawable2D.

Valid values are defined in AR.CONST.VERTICAL_ANCHOR. For example, if TOP is set as horizontal anchor of an Image, the image's top edge will match the calculated position of the Drawable2D.

The default vertical anchor points is dependent on the concrete class of the Drawable2D.

zOrder

Number

Inherited from Drawable2D

If multiple Drawable2Ds are assigned to a certain GeoObject, the zOrder defines the drawing order of these Drawables. In case the Drawables overlap, the Drawable with the higher zOrder value is rendered on top of the others (e.g. a Drawable with zOrder 1 is rendered on top of a Drawable of zOrder 0, which again is rendered on top of -1). In case Drawables have the same zOrder defined, and they overlap, the behavior is undefined and might cause unexpected results, thus it is good practice to define the zOrder for potentially overlapping Drawables.

To specify the rendering order of the Drawables of different GeoObjects, refer to GeoObject.renderingOrder.

Must be a whole number.

Default: 0

Events

onClick

Inherited from Drawable

When the Drawable is clicked, the system will trigger Drawable.onClick(ARObject). A click on the screen might hit multiple Drawables, thus a click creates a "clicked Drawables-queue", with the uppermost Drawable in the front of the queue. The return value of the function determines if, after the onClick()-Function was executed for this Drawable, the queue shall continue to execute onClick() for the next Drawable in the queue. In case the last Drawable in the queue still requests to continue the click-queue, ARObject.onClick() will be executed. If the queue still continues, context.onScreenClick() will be executed.

The return value of the function determines what happens next. If false, the click-queue should not stop with this Drawable. Thus, the next Drawable's onClick() function will be executed. This is the default value in case no return value is set or the function is not defined for this Drawable. If true, the queue-execution will stop at the current Drawable, underlying Drawables will not receive onClick() calls.

Event Payload:

  • arObject ARObject

    the ARObject the clicked Drawable is attached to.

    The trigger is null by default, and will thus result in no action executed when the trigger fires. A developer can add custom functionality by assigning a custom function to onClick.

onError

The trigger will fire when the Video file cannot be loaded or played.

The trigger is null by default, and will thus result in no action executed when the trigger fires. A developer can add custom functionality by assigning a custom function to onError.

Event Payload:

  • msg String

    The detailed error description.

onFinishedPlaying

The trigger will fire just after the Video file finished playing.

The trigger is null by default, and will thus result in no action executed when the trigger fires. A developer can add custom functionality by assigning a custom function to onFinishedPlaying.

onLoaded

The trigger will fire when the Video file was loaded.

The trigger is null by default, and will thus result in no action executed when the trigger fires. A developer can add custom functionality by assigning a custom function to onLoaded.

onPlaybackStarted

The trigger will fire just before the Video file starts playing.

The trigger is null by default, and will thus result in no action executed when the trigger fires. A developer can add custom functionality by assigning a custom function to onPlaybackStarted.

triggers.onClick

deprecated

Inherited from Drawable

Deprecated: Use onClick instead.