BlueprintScript

@ApiStatus.Internal
class BlueprintScript : Record

A script data of blueprint.

Parameters

name

script name

length

play time

scripts

scripts

Constructors

Link copied to clipboard
constructor()

Types

Link copied to clipboard
interface ScriptReader
Script reader

Functions

Link copied to clipboard
@NotNull
open fun emptyOf(@NotNull animation: ModelAnimation): BlueprintScript
Creates empty script.
Link copied to clipboard
abstract fun equals(p: Any): Boolean
Link copied to clipboard
@NotNull
open fun from(@NotNull animation: ModelAnimation, @NotNull animator: ModelAnimator): BlueprintScript
Creates animation's script
Link copied to clipboard
abstract fun hashCode(): Int
Link copied to clipboard
@NotNull
open fun loop(delay: Int, speed: Float): BlueprintScript.ScriptReader
Gets script reader by loop
Link copied to clipboard
@NotNull
open fun single(delay: Int, speed: Float): BlueprintScript.ScriptReader
Gets script reader by once
Link copied to clipboard
abstract fun toString(): String