Customise Consent Preferences

We use cookies to help you navigate efficiently and perform certain functions. You will find detailed information about all cookies under each consent category below.

The cookies that are categorised as "Necessary" are stored on your browser as they are essential for enabling the basic functionalities of the site. ... 

Always Active

Necessary cookies are required to enable the basic features of this site, such as providing secure log-in or adjusting your consent preferences. These cookies do not store any personally identifiable data.

No cookies to display.

Functional cookies help perform certain functionalities like sharing the content of the website on social media platforms, collecting feedback, and other third-party features.

No cookies to display.

Analytical cookies are used to understand how visitors interact with the website. These cookies help provide information on metrics such as the number of visitors, bounce rate, traffic source, etc.

No cookies to display.

Performance cookies are used to understand and analyse the key performance indexes of the website which helps in delivering a better user experience for the visitors.

No cookies to display.

Advertisement cookies are used to provide visitors with customised advertisements based on the pages you visited previously and to analyse the effectiveness of the ad campaigns.

No cookies to display.

[ad_1]

What I am doing:

I am shifting a projectile to it is goal alongside a Bézier curve with one management level.

The projectile strikes from Remodel A to Remodel B with the curve created by management’s Remodel‘s place. I am utilizing this methodology in order that I can change how the projectile’s arc or path seems relying on the enemy’s place.

The difficulty:

The projectile travels from A to B efficiently, nonetheless, my subject is relying on the curve the velocity may be inconsistent and an undesirable ‘easing’ impact can happen.

Here is an instance within the picture under. Due to management’s place, you possibly can see the wirespheres start to bunch up and smoosh collectively. Because the projectile travels from A to B, it is going to regularly transfer slower because the wirespheres grow to be nearer collectively.

enter image description here


Listed below are the 2 scripts I’m utilizing to perform this:

public class QuadraticCurve : MonoBehaviour
{
    public Remodel A;
    public Remodel B;
    public Remodel Management;

    public Vector3 consider(float t)
    {
        Vector3 ac = Vector3.Lerp(A.place, Management.place, t);
        Vector3 cb = Vector3.Lerp(Management.place, B.place, t);
        return Vector3.Lerp(ac, cb, t);
    }

    non-public void OnDrawGizmos()
    {
        if(A == null || B == null || Management == null)
        {
            return;
        }    

        for (int i = 0; i < 20; i++)
        {
            Gizmos.DrawWireSphere(consider(i / 20f), 0.1f);
        }
    }
}

public class ProjectileAttack: MonoBehaviour
{
    public QuadraticCurve curve;

    non-public IEnumerator MoveTheDart()
    {
        // Set the goal
        _curve.B.remodel.place = ImpactPosition.place;

        whereas (sampleTime < 1f)
        {
            sampleTime += Time.deltaTime * newSpeed;
            projectile.place = curve.consider(sampleTime);
            yield return null;
        }
    }
}

What I want help with:

  • I want my projectile to maneuver alongside the curve from A to B with a constant velocity no matter how the curve seems.

Thanks a lot to anybody taking the time!😊

[ad_2]

Leave a Reply

Your email address will not be published. Required fields are marked *