|
In my game I have a textfield that it has a number but what I want to do are several things. First I want to make that what you write in the textfield is the same as a variable that handles only numbers (int), also another thing is that if it is possible that in the textfield only can write numbers, and finally and very important, if I can do at the moment of do a clic in the textfield the game stop what he was doing, so if for example the game use for something the number 1 and you write in the textfield 1 nothing happens in the game. I really need your answers so please if you know please answer. Thanks for future. :P
(comments are locked)
|
|
To get the value of the textfield try (c#)
Restricting a textfield to numbers is difficult. I would try this (but it certainly isn't very good code)
This code checks if it can parse the text to a number. If the convertion fails, the textfield didn't contain a number and is set to 0. Please do not comment about this, I know this is very bad style. I also know the sentence "Don't use exceptions for flowcontrol" To disable parts of your game I would add public variables to the script that checks the textfield. This should work (c#)
In the inspector you can assign objects to the variables object1 and object2 of your script. If the textfield contains specific numbers the GameObjects object1 or object2 are enabled/disabled. Lets say object1 contains the script that spawns the enemies in your scene. When the user types 1 in the textfield and presses "Enter" the object is deactivated and no more enemies are spawned. but you know how to do this in java script?
Oct 31 '10 at 02:14 PM
Uriel_96
its there a way to deactivate the keys of the game when you are writing on the textfield, for example if the game use the key 1 to do something and the user is writing in a textfield and write the number 1 I dont want the game to react to that key number 1 at that moment
Oct 31 '10 at 02:45 PM
Uriel_96
int.TryParse is the way to properly parse it without exception. See http://answers.unity3d.com/questions/40103/text-field-inputting-numbers-only.html
Mar 22 '12 at 09:42 AM
stfx
(comments are locked)
|
