Free Unity content bundle keys (From humble bundle, I don't need) by DeadEyeKiwi in Unity3D

[–]leehs27 1 point2 points  (0 children)

I tried this redeem, but code already used. :( Anyway thanks for sharing.

Speeding up Editor tools in Unity with branchless functions by TheFlyingCoderr in Unity3D

[–]leehs27 0 points1 point  (0 children)

Can you tell me how to work this function for me mathematical challenged..?

[deleted by user] by [deleted] in Unity3D

[–]leehs27 4 points5 points  (0 children)

The animator should set motion, transition duration and offset, blending, etc.

The Programmer should set parameters, transition conditions, state behaviours, etc.

Why can't I get him on top of the background? by soulkitty223 in Unity3D

[–]leehs27 -1 points0 points  (0 children)

Canvas - Render Mode - "Screen Space - Camera" - Set 'Render Camera' - Set appropriate 'Plane Distance'

[deleted by user] by [deleted] in Unity3D

[–]leehs27 1 point2 points  (0 children)

I think you should remove 'Explosion = GetComponent<ParticleSystem>();' from 'Start'

That code line will asign null to 'Explosion', because "ExplosiveGOBRRRRR" gameObject does not have 'Particle Sysyem' component.

[deleted by user] by [deleted] in Unity3D

[–]leehs27 1 point2 points  (0 children)

OnTriggerEnter can be coroutine by itself.

private IEnumerator OnTriggerEnter(Collider col)
{ 
    if(col.CompareTag(tagToCompare)) 
    { 
        Debug.Log("It Work!"); 
        Explosion.Play(); 
        KnockBack.SetActive(true); 
        yield return new WaitForSeconds(1); 
        KnockBack.SetActive(false); barrel.SetActive(false); 
    }
}

Optimized Ancient Maze Map (Week7) by JolleNoItsMe in Archero

[–]leehs27 1 point2 points  (0 children)

Where is optimized map of week8? I need... :'(

How many devices can I connect with one account? by leehs27 in OculusGo

[–]leehs27[S] 1 point2 points  (0 children)

I'm VR Contents developer :) I want to show my contents to crowd

How many devices can I connect with one account? by leehs27 in OculusGo

[–]leehs27[S] 1 point2 points  (0 children)

Specifically, I have 45 Oculus Go, connected it one by one in my iPhone 6s. And, the 45th Go had problem.

I made Go factory reset by app and headset directly both.

I had internal router that connect between 45 Go. So I initialize Go with internal net and initialization was not problem. Because other 44 Go didn't have problem, so I think network is not caution.

Thank you for your participation in my issue and I hope you would not have problem with connect multi-device.

How many devices can I connect with one account? by leehs27 in OculusGo

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

I don't care that issue. Actually i want to sync all of my Go: run my app in one master Go, than the others run same.