How to use the @microsoft/mixed-reality-extension-sdk.AnimationEaseCurves.EaseOutSine function in @microsoft/mixed-reality-extension-sdk

To help you get started, we’ve selected a few @microsoft/mixed-reality-extension-sdk examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github microsoft / mixed-reality-extension-sdk-samples / samples / acb-prototype / src / app.ts View on Github external
buttonLogic[i].onHover('enter', () => {
                buttons[i].animateTo(
                    { transform: {
                        local: {
                            scale: { x: 0.11, y: 0.11, z: 0.11 } } } }, 0.3, AnimationEaseCurves.EaseOutSine);
            });
github microsoft / mixed-reality-extension-sdk-samples / samples / hello-world / src / app.ts View on Github external
buttonBehavior.onHover('enter', (userId: string) => {
            this.cube.animateTo(
                { transform: { scale: { x: 0.5, y: 0.5, z: 0.5 } } }, 0.3, AnimationEaseCurves.EaseOutSine);
        });
        buttonBehavior.onHover('exit', (userId: string) => {
github microsoft / mixed-reality-extension-sdk-samples / samples / hello-world / src / app.ts View on Github external
buttonBehavior.onHover('exit', () => {
            this.cube.animateTo(
                { transform: { local: { scale: { x: 0.4, y: 0.4, z: 0.4 } } } }, 0.3, AnimationEaseCurves.EaseOutSine);
        });
github microsoft / mixed-reality-extension-sdk-samples / samples / acb-prototype / src / app.ts View on Github external
buttonLogic[i].onHover('exit', () => {
                buttons[i].animateTo(
                    { transform: { local: { scale: this.buttonScale } } }, 0.3, AnimationEaseCurves.EaseOutSine);
            });
        }
github microsoft / mixed-reality-extension-sdk-samples / samples / hello-world / src / app.ts View on Github external
buttonBehavior.onHover('enter', () => {
            this.cube.animateTo(
                { transform: { local: { scale: { x: 0.5, y: 0.5, z: 0.5 } } } }, 0.3, AnimationEaseCurves.EaseOutSine);
        });
        buttonBehavior.onHover('exit', () => {
github microsoft / mixed-reality-extension-sdk-samples / samples / hello-world / src / app.ts View on Github external
buttonBehavior.onHover('exit', (userId: string) => {
            this.cube.animateTo(
                { transform: { scale: { x: 0.4, y: 0.4, z: 0.4 } } }, 0.3, AnimationEaseCurves.EaseOutSine);
        });

@microsoft/mixed-reality-extension-sdk

The Mixed Reality Extension SDK enables developers to build 3D world extensions for AltspaceVR, using Node.JS.

MIT
Latest version published 4 years ago

Package Health Score

50 / 100
Full package analysis