Unity 3D Question
Hey every one, i recently discoverd inity 3d on youtube
I tried downloading it and my internet keeps dissconnecting
In other words i cant download it,
I was wondering if anyone who has the install files for the latest unity3d (or anyother version.)
Could write them to a disk for me and post it to me
If you wanna helP you can email me louisschprs [at] gmail [dot] com
I tried downloading it and my internet keeps dissconnecting
In other words i cant download it,
I was wondering if anyone who has the install files for the latest unity3d (or anyother version.)
Could write them to a disk for me and post it to me
If you wanna helP you can email me louisschprs [at] gmail [dot] com

Comments
where in ZA do you live? If it is close enough to me I could get the installer to you on a DVD (otherwise I can just post it).
If you are in JHB I could probably even drop it off tomorrow.
You can do various things in that situation :
1. You could create a script with a public texture variable that you assign the image you want to. Then in the Start function you just set the materials textures to that texture
public Texture2D myTex; void Start() { renderer.material.texture = myTex; }2. Use sprites
3. You can dynamically create a new material at runtime for each quad if you so wish.
Personally I would just use unity's new sprite system.
Hope that helped.
https://www.assetstore.unity3d.com/en/#!/content/18184
https://www.assetstore.unity3d.com/en/#!/content/6193
https://www.assetstore.unity3d.com/en/#!/content/16967