Posts by Moribundo Chat • 99 points
5 posts
-
0
votes2
answers317
viewsA: How to make a Transform. Smoothed translate() in unity5?
I don’t quite understand if this is what you want, but from a read on: https://docs.unity3d.com/ScriptReference/Vector3.MoveTowards.html or https://docs.unity3d.com/ScriptReference/Vector3.Lerp.html…
-
1
votes0
answers134
viewsQ: How to capture camera image in real time - C#
How would you capture the real-time image of a camera from an android phone for example? I mean, with "real time," it would be like I was analyzing every time the camera was activated for this.…
-
1
votes1
answer1419
viewsQ: Access a specific row and column from a C#list
How do I make a multidimensional list, and that I can add elements like this: List<List<String>> listaMultidimensional = new List<List<string>>();…
-
3
votes3
answers468
viewsA: Search for word in the first array column
for(int i = 0; i < array.GetLength (0); i++){ if (array [i, 0].Contains ("Texto")) { Debug.Log ("achou"); } I got it this way.
-
3
votes3
answers468
viewsQ: Search for word in the first array column
How do I search for a word in all lines, but only in the first column of a array that will always increase in size? string[,] array = new string[1,6]{{"texto","","","","",""}};…