I was wondering if you could create an upload feature in Unity that lets you browse your files and upload videos, pictures. etc. and use them? so far my research has been underwhelming, I have yet to know if this is even possible or not, Hope you guys have good news for me though.
1 Answer
1Searching for “unity file browser” gives me lots of hits, including
- http://wiki.unity3d.com/index.php?title=ImprovedFileBrowser
- Starscene Software - Unity Utilities - UniFileBrowser
If those don’t meet your requirements, perhaps you can be more specific as to what you want to achieve. Where are you trying to “upload” these files to?
That's ok. just this Unity File Browser is enough for me today. I'm taking this slow cause my Project is a bit hard to explain and create. Thank again.
– XenonSpher
Awesome. You could optimize the code a little bit though. Try this: //Have this as a field private Rigidbody myrig; //Put this in Start. myrig = GetComponent<Rigidbody>(); //When you jump myrig.velocity = new Vector3(myrig.velocity.x, jumpHeight, myrig.velocity.z);
– ragnaros100