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

x/remapper/src/animation.ts>Animation

A framework for Beat Saber map scripting.
Go to Latest
class Animation
import { Animation } from "https://deno.land/x/remapper@2.1.0/src/animation.ts";

Constructors

new
Animation(length?)

Noodle animation manager. The time in each keyframe is divided by the length. Use a negative number or don't specify a length to use a range between 0 and 1. Setting a property will add any existing keyframes and sort by time.

Methods

abstract(json?: Record<string, any>)

Create an event with no particular identity.

environmentAnimation(json?: Record<string, any>)

State that this animation is for an environment object.

fogAnimation(json?: Record<string, any>)

State that this animation is for fog.

import(json: Record<string, any>)

Create an animation using JSON.

noteAnimation(json?: Record<string, any>)

State that this animation is for a note.

wallAnimation(json?: Record<string, any>)

State that this animation is for a wall.