Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Topics - cem

Pages: [1]
1
DOTween & DOTween Pro / Tweening with a moving endPosition
« on: January 18, 2016, 06:30:27 PM »
I have a moving platform where I want to tween my object to. From what i understood it's not possible; so the end position must be 'static' . Can someone confirm ?
Thanks !

2
DOTween & DOTween Pro / CHRONOS support, kinda works ... but ..
« on: November 18, 2015, 03:14:29 PM »
I have the following Tween :
Code: [Select]
transform.DOMoveY(NY, Random.Range(1,2), false).SetEase(Ease.InSine).OnUpdate(setFalling).OnComplete(playSound).RegisterChronosTimeline(time);

where RegisterChronosTimeline is:
Code: [Select]
using Chronos;
using DG.Tweening;

public static class MyExtensions
{
public static void RegisterChronosTimeline(this Tween tween, Timeline timeline)
{
tween.OnUpdate(()=> tween.timeScale = timeline.timeScale);
}
}

But i have the following Warning:
DOTWEEN ::
An error inside a tween callback was silently taken care of > Object reference not set to an instance of an object

But i've checked; 'time' is not null, it's defined in the Chronos Class.

(i basically did this one : https://github.com/Demigiant/dotween/issues/19)

What's wrong here ?

Glad if someone can help me out;

Thanks !

3
DOTween & DOTween Pro / How to detect collisions during a Tween ?
« on: October 29, 2015, 08:25:25 PM »
I'm having this issue; where i have blocks falling on the character; the blocks have a tween running but it won't "collide" unless the tween has completed.

I wonder if there's a way to do this ?

Thanks

Pages: [1]