Texture2D Count C#
public List textureList; void OnGUI(){ if(GUI.Button(new Rect(10,10,200,50),"White")){ renderer.material.mainTexture = textureList[0]; for(int i=0; i
View Articledropobject script not destroying parentgame game object
[Code=CSharp] using UnityEngine; using System.Collections; public class Drops : MonoBehaviour { public GameObject brick; public int brickCount; // Use this for initialization void Start () { } //...
View ArticleCollecting 2 items at a time by mistake.
I have a very simple game where the goal is to collect 15 stars. Everything works fine except that some of the stars count for 2 points instead of 1. I tried deleting the stars that get counted twice,...
View ArticleHow to count the number of strings in a string class?
How do you count the number of strings used in the same string class? Said for example I have two scripts. in script one// public void something(string someWord) { //the number of string that belongs...
View Articleinstantiate a set amount
i want to spawn a certain amount each time var health : int; var details : boolean = false; //this is the amount i want it to spawn but i wanna be able 2 change it var amount = 1; var Item; var item1 :...
View ArticleTable Counting
Hello, and thanks in advance for reading. I'm making an options menu for my game, and following suit to KSP's system for screen resolution, I make a table of all supported resolutions and use a slider...
View Articlemake it create GUI copy per count.
for each button count i want there to be a matched amount of the GUI button so if buttoncount = 5 i want there to be 5 copys of the GUI button each number it goes up i want the location of the button...
View ArticleCount Objects with specific colour
Hello Unity Answers. In my scene I have 20 cubes for witch I specify a colour through java script on mouse click. Each of them have a tag "Tile". How do I filter GameObjects[] list to count objects...
View Articlei get more clicks than the clicks really happens
i have this code `void Update () { if(Input.GetMouseButton(0)) { Ray ray = Camera.main.ScreenPointToRay(Input.mousePosition); RaycastHit rayCastHit; if(Physics.Raycast(ray.origin, ray.direction, out...
View Articlecounting rigid bodies
I am working on a personal project and have almost everything done expect for one last bit of stubborn code. What I have is a trigger which is behind the player and every time a rigid body hits that...
View ArticleNumber of GameObjects and actions
I need to count the number of GameObjects with the tag "sphere" in the scene and, if they're equal or more than 3 (for example) a gameobject will be destroyed. Can you help me?
View ArticleOverlapsphere : Count objects based on variable ?
Hi guys ! So here's what I am trying to do. I have a cube having a certain amount of a resource (water for example). I want this cube to detect other cubes around it and check if they have a lower...
View ArticleWhen EnemyCount reaches 0, Load Win Screen
Ok so I'm running on some major BULLSHIT. I'm trying to make that when you kill all enemies, the Win screen loads. I have 10 enemies in the level, but for some unexplainable reason, that number just...
View Articlecount the number on enemyes entrering into a trigger
Im having some confusion here, i have a trigger collider and i want if x number of enemies past trought this collider restart the game, and i try this but nothing hapen #pragma strict var numEnemies :...
View ArticleWhy won't the count decrease?
This is my code: var rotSpeed: float = 90; // degrees per second var coins : int; function Awake()//initializes coins when game starts or restarts? { coins = 6; } function Update()//every frame, rotate...
View ArticleHow to Format Timer Counting Up from Zero?
Hey everybody. I have a timer that starts at zero and counts up during game play. As it gains value, I want to display the time in minutes and in seconds and if the timer gets high enough, hours too....
View ArticleC# Data Table count rows.
Hello. I am using SimpleSql for my game. However, I have a menu - I need to know how many rows will be returned. Rect rScrollFrame = new Rect(listMargin.x, listMargin.y, listSize.x, listSize.y); Rect...
View ArticleGame Time with variable count speed
Hi, I was wondering how to make a game time counter that has varying counting speed. What I mean by that is: Normal Counting: [1] (1 second wait), [2] (1 second wait), [3] (1 second wait), [4] (4...
View ArticleStrange code Debugging
Hi everyone! I'am just trying to move some children to an other gameObject, but only half was been transfered correctly!? Here my code: print("old Child Count " + oldGameObject.transform.childCount);...
View ArticleProblems with finger count.
I am trying to make simple controls for player. If you tap with one finger, you start rotating cw, but if you tap with 2 fingers instead, you rotate in opposite direction. Everything works well so far,...
View Article