Code Monkey home page Code Monkey logo

eztweentask's Introduction

EzTweenTask

Simple tween for Unity using async/await

float time = Random.Range(0.5f, 2f);
Vector3 to = Random.insideUnitSphere * Random.Range(0, 5f);
await EzTween.TweenLocalPosition(targetTrans, EzEaseType.Linear, to, time);
float time = Random.Range(0.5f, 2f);
Color to = Random.ColorHSV();
await EzTween.TweenRendererColor(renderer, EzEaseType.Linear, to, time);

Cancel

// cancel
cancellationTokenSource?.Cancel();
cancellationTokenSource = null;

// Play
cancellationTokenSource = new CancellationTokenSource();

Vector3 to = Vector3.one * Random.Range(1f, 5f);
await EzTween.TweenScale(targetTrans, animationCurve, to, time, cancellationTokenSource.Token);

Chain

async Task Chain()
{
 var token = cancellationTokenSource.Token;

 Color colorTo = Random.ColorHSV();
 await EzTween.TweenRendererColor(targetRenderer, ezEaseType, colorTo, 2, token, () => { Debug.Log("color.complete"); });

 await EzTween.DelaySec(3, token);

 Vector3 posTo = Vector3.one * Random.Range(1f, 5f);
 await EzTween.TweenLocalPosition(targetTrans, ezEaseType, posTo, 2, token, () => { Debug.Log("pos.complete"); });
 
 Debug.Log("Chain.Complete");
}

Parallel

async Parallel()
{
 var token = cancellationTokenSource.Token;

 Color colorTo = Random.ColorHSV();
 Task task1 = EzTween.TweenRendererColor(targetRenderer, ezEaseType, colorTo, 2, token, () => { Debug.Log("color.complete"); });

 Vector3 posTo = Vector3.one * Random.Range(1f, 5f);
 Task task2 = EzTween.TweenLocalPosition(targetTrans, ezEaseType, posTo, 3, token, () => { Debug.Log("pos.complete"); });

 await Task.WhenAll(task1, task2); // 全て終了

 Debug.Log("Parallel.Complete");
}

EzTween

https://github.com/inoook/EzTween

eztweentask's People

Contributors

inoook avatar

Stargazers

 avatar  avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.