Commit 93211be
committed
v0.63.3
Release notes:
- [twisty] Add a `. experimentalHintFaceletsElevation ` config and property to `TwistyPlayer`.
- [twisty] Support `experimentalFaceletScale` in the `TwistyPlayer` constructor.
Example usage of `experimentalHintFaceletsElevation `:
```ts
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;
```1 parent a955ab8 commit 93211be
1 file changed
Lines changed: 1 addition & 1 deletion
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
1 | 1 | | |
2 | 2 | | |
3 | | - | |
| 3 | + | |
4 | 4 | | |
5 | 5 | | |
6 | 6 | | |
| |||
0 commit comments