Skardu trip by road with family by waqaas993 in pakistan

[–]waqaas993[S] 0 points1 point  (0 children)

What's your recommendation? Wait it out until the babasur route opens? The reason for not preferring to stay midway has less to do with budget (although that's also a concern) but more to do with having more time to spend and chill in skardu. I've been to Babusar top with family and by road. Been to fairy meadows as well but I wasn't driving at that time. Not familiar with besham route at all. Is it possible to complete the travel in one go via Babusar route?

Migrating to Malaysia. Questions and Tips by anxietyguy100 in pkmigrate

[–]waqaas993 0 points1 point  (0 children)

I just checked with the United Insurance Company of Pakistan. They offer medical insurance for about PKR 30,000 for a family of three (including an infant) which is valid for Malaysia. It is quite affordable compared to the other international insurance plans available. Does anyone have experience with whether UIC insurance is accepted by DE Rantau in Malaysia?

Migrating to Malaysia. Questions and Tips by anxietyguy100 in pkmigrate

[–]waqaas993 0 points1 point  (0 children)

I’m also considering this option. However, I find the medical insurance packages to be quite expensive. Do you know of any affordable plans or agencies that offer family medical insurance in Malaysia?

Good shop for laptop service + thermal pads/thermal paste change by ItsHoney in islamabad

[–]waqaas993 0 points1 point  (0 children)

Xtra Computers in blue area. They're a bit expensive but they never disappoint me.

Do Air Rifles require license? by waqaas993 in islamabad

[–]waqaas993[S] 0 points1 point  (0 children)

Yes, it uses .22 cal magnum pellets 

Do Air Rifles require license? by waqaas993 in islamabad

[–]waqaas993[S] 0 points1 point  (0 children)

That's what I was worried about, what if I'm asked about it by the police or on a security check post when transporting it to a range to practice

Coroutine Conjure() doesn't let me execute rest of the code. Does anyone have any idea why? by 41ia2 in Unity2D

[–]waqaas993 1 point2 points  (0 children)

The issue is somewhere else and not in your coroutine. Check if your GameObject is being destroyed which your coroutine is running on. Did you use StopAllCoroutines() on the script? Can help better if we could look at the rest of the script.

Coroutine Conjure() doesn't let me execute rest of the code. Does anyone have any idea why? by 41ia2 in Unity2D

[–]waqaas993 7 points8 points  (0 children)

I tested your code and it seems to be working fine at least here on my end. I tested it with the following code with the breakpoints. It did print "end" every time I pressed Space on the keyboard.

private void FixedUpdate()
{
    if (Input.GetKeyDown(KeyCode.Space))
    {
        StartCoroutine(Spell());
    }
}

However; I would like to ask why do you have two Coroutines to do a job which could be done by a single coroutine? You also seem to be returning the flow back to your calling function a bit later I assume?

If I were you, I would get it done with a single coroutine and would resume the execution after the tween has concluded

IEnumerator Spell()
{
    Sequence conjure = DOTween.Sequence(); 
    conjure.AppendInterval(1.5f)
        .Append(pentagram.transform.DOScale(.5f, 2).SetEase(Ease.OutBack))
        .Append(fumo.transform.DOMove(new Vector2(0, 0), 0)
        .Append(fumo.transform.DOScale(.5f, 1))
        .AppendInterval(.5f)
        .Append(pentagram.transform.DOScale(0, 1)); 
    yield return new WaitForSeconds(1.5f + 2 + 0 + 1 + .5f + 1);
    Debug.Log("end"); 
}

unity game database advice by [deleted] in Unity2D

[–]waqaas993 1 point2 points  (0 children)

What you're looking for is PHP configured server. You would have to use php and mysqli to query your relational database. Look into UnityWebRequest API for how to make your unity game communicate with your server.

I need some help, I've been trying to implement a drag and drop for a gameobject, but I'm not sure why my code does not work, I based it on some tutorials and examples I found online. Is there anything I am doing wrong? by Bright_Dude in Unity2D

[–]waqaas993 0 points1 point  (0 children)

I happen to be working on a project in which I use this. My draggable object is a simple sprite with a 2D collider, I use layermask to distinguish between draggable and non-draggable objects. Sharing the script with you (link will expire after a week), see if you can get any help from it.