can i use a hexagon mesh on a Terrain?
can i change the mesh on a terrain object to have hexagon-triangle tiles? the tiles are already tileable on a terrain with normal mesh planes. Can i use 100 small terrain objects in a game of 100x100...
View ArticleNew vertex limit of 131000 vertices per mesh?
my procedural object adds vertices until it goes over 65k vertices, and i expect an error message at that stage, and the mesh to dissapear, but there is no error message and the mesh is visible with...
View ArticleLookRotation flipping 180 degrees through y axis
I have LookRotation to rotate some points as the move through space, and when it crosses the Y axis it rotates by 180 degrees, sometimes 120, so there is an error in the mesh. this is the rotation code...
View ArticleHow to prioritise quaternions over transforms?
I am confused about how to properly combine transform.position, transform.rotation, and quaternions so that they dont override one another. I have a spacecraft flying in a tube with: rotation around...
View ArticleRecommended max sphere colliders for smartphone?
What is the recommended maximum number of sphere colliders to be used in a game for release on the windows appstore? should i limit the game to 10, 50, or 100 sphere colliders, at 15fps physics time?
View ArticleSyntax Error "can't multiply System Type with Float"
i have a function pln(num:float): float{} ... bizarre error happening, because pln worked in the previous function, same lines, and it halts on error for identical lines in a similar function just...
View Articlehow to assign mesh.vertices ToList linq extension
this doesnt work: var mesh2 : Mesh = child.gameObject.GetComponent(MeshFilter).mesh; var vtxlist = new List.(); var vtx2 = mesh2.vertices; vtxlist = vtx2.ToList();...
View Articleproblem with loop and mesh values
Trying to delete n colored uvs and vertices from a mesh, but after 4 loops, it sais the index is out of range, even though it is counting down from top to bottom. ![alt text][1] i dont understand. var...
View Articleproblem with loop and mesh values
Trying to delete n colored uvs and vertices from a mesh, but after 4 loops, it sais the index is out of range, even though it is counting down from top to bottom. ![alt text][1] i dont understand. var...
View ArticleU3D version 4 optional function parameters in javascript and c#
Can someone please demonstrate the Unity3d optional function parameters? i.e. function human(name:string,required; age: int, optional; shoesize:float,optional; haircolor : Color : optional) ... is...
View Articlehow to color programatically created plane?
i have these lines to create a plane, and then i attempt to place a texture on it in game, and to change the color, but it stays dark grey even with blue texture on it. zfightingplane =...
View ArticleWhy is Vector3.Lerp slower than function Lerp (a,b,c):Vector3{...
When i was editing marching cubes, i found that Mathf.Lerp seemed a bit slower than a function of Lerp written in the same script as the marching cubes code. (Unless someone shows otherwise) Could you...
View ArticleSimple Voronoi Code not working
I tried to convert a fast voronoi code on [this page][1], I tried so many different combinations of code and there is always the same error, can anyone see what is wrong with my code? it looks like the...
View Articlemaxiumum instantiantions per frame?
instantiating is slow because it uses alot of memory for quaternions etc, it seems to slow frames very fast. (there is a way to instantiate raw mesh) A)What is the maximum instantiations per frame /...
View ArticleTerrainCollider.terrainData on custom mesh
Meshcolliders are slow, and updating them makes the game lag when an object has more than 1000 2000 vertices. So i would like to use TerrainCollider.terrainData on custom mesh, and i think only someone...
View Articlecan i use a hexagon mesh on a Terrain?
can i change the mesh on a terrain object to have hexagon-triangle tiles? the tiles are already tileable on a terrain with normal mesh planes. Can i use 100 small terrain objects in a game of 100x100...
View ArticleNew vertex limit of 131000 vertices per mesh?
my procedural object adds vertices until it goes over 65k vertices, and i expect an error message at that stage, and the mesh to dissapear, but there is no error message and the mesh is visible with...
View ArticleLookRotation flipping 180 degrees through y axis
I have LookRotation to rotate some points as the move through space, and when it crosses the Y axis it rotates by 180 degrees, sometimes 120, so there is an error in the mesh. this is the rotation code...
View ArticleHow to prioritise quaternions over transforms?
I am confused about how to properly combine transform.position, transform.rotation, and quaternions so that they dont override one another. I have a spacecraft flying in a tube with: rotation around...
View ArticleRecommended max sphere colliders for smartphone?
What is the recommended maximum number of sphere colliders to be used in a game for release on the windows appstore? should i limit the game to 10, 50, or 100 sphere colliders, at 15fps physics time?
View Article