Skip to main content
Using Deno in production at your company? Earn free Deno merch.
Give us feedback
Module

x/remapper/src/mod.ts>CustomEvent

A framework for Beat Saber map scripting.
Go to Latest
class CustomEvent
Re-export
import { CustomEvent } from "https://deno.land/x/remapper@3.0.0/src/mod.ts";

Constructors

new
CustomEvent(time?)

Custom Event object for ease of creation.

Properties

animateComponent: (
track?: TrackValue,
duration?: number,
easing?: EASE,
) => unknown

Animate components on a track.

animateTrack: (
track?: TrackValue,
duration?: number,
animation?: Json,
easing?: EASE,
) => unknown

Animate a track.

assignPathAnimation: (
track?: TrackValue,
duration?: number,
animation?: Json,
easing?: EASE,
) => unknown

Animate objects on a track across their lifespan.

assignPlayerToTrack: (track?: string) => unknown

Assigns the player to a track.

assignTrackParent: (
childrenTracks: string[],
parentTrack: string,
worldPositionStays?: boolean,
) => unknown

Assign tracks to a parent track.

Methods

Create an event with no particular identity.

import(json: Json)

Create a custom event using Json.