Mobile development using Unity and alternative environments. Discussing mostly scripting.
> Mobile development using Unity and alternative environments. > Discussing mostly scripting.
Good day! Who knows, which Unity tools allows to simplify creation 3D maps of some part of the Earth? thank you for your suggestions.
Good evening There is a resource allowing to create a Unity terrain from map http://wiki.unity3d.com/index.php/HeightmapFromTexture
Developers design scripts allowing to obtain terrain from map automatically. Here is a reference for video showing this possibility. https://www.youtube.com/watch?v=-vyNbalvXR4
One more useful reference to site from which copies of maps are obtained http://terrain.party
Good evening. I design an arcanoid in Unity and have a problem. How to enforce a ball to move by arcanoid rules, namely: to reflect from walls by angle 45° and change it direction? In my script when the position of ball is changed to some value, the ball becomes invisible too quickly.
I develop a 2D game which sometimes starts to answer slow on user requests. I suspect that the cause is using of many textures and materials on GameObjects?. When I remove all textures and materials the game starts to work in normal speed. Which optimisation can be done to increase the speed of graphics procedding.
> I develop a 2D game which sometimes starts to answer slow on user requests. > I suspect that the cause is using of many textures and materials on GameObjects?. > When I remove all textures and materials the game starts to work in normal speed. > Which optimisation can be done to increase the speed of graphics procedding.
Hi, I suspect that the problem is in draw calls count and you need to reduce it. You can reduce draw call in mobile 2D game by implementing texture atlases (Unity Sprite Editor) for sprites, use mobile friendly shaders, use one material for many objects and also you should use low poly objects and low number of particles. This will help you :)