Skip to content

v0.63.3

Latest

Choose a tag to compare

@github-actions github-actions released this 26 Feb 04:34

Release notes:

  • [twisty] Add a . experimentalHintFaceletsElevation config and property to TwistyPlayer.
  • [twisty] Support experimentalFaceletScale in the TwistyPlayer constructor.

Example usage of experimentalHintFaceletsElevation :

import { TwistyPlayer } from "cubing/twisty";

// Set initially:
const player = document.body.appendChild(
  new TwistyPlayer({
    experimentalHintFaceletsElevation: 2,
  }),
);

// Update later:
await new Promise((resolve) => setTimeout(resolve, 1000));
player.experimentalHintFaceletsElevation = 4;