Questions tagged [unityscript]
STOP: this is probably not the tag you want. UnityScript is a deprecated language. For new questions about scripting in Unity, you probably want the tags "Unity" and "C#". Only use this tag for questions about legacy code written in UnityScript, the old JavaScript-like scripting language available until Unity version 2017.2.
318 questions
2
votes
1
answer
3k
views
Unity: How to get a GameObject programmatically?
I have created a prefab.
In Unity Scene editor, I dragged the prefab into the scene and named it PrefabA (this is a GameObject instance of the Prefab).
Now, I need to update the PrefabA position.
How ...
0
votes
4
answers
9k
views
How to check distance between two different vectors?
So I have a very basic racing game, where I would like the car to stop once it hits the finish line. Respectively when the distance between the car and the finish line hits or goes under 0 the car ...
5
votes
1
answer
10k
views
Is Physics2D.BoxCast a safe alternative to a row of raycasting?
Raycasting in rows is a common practice.
Is using the Physics 2D BoxCast function a good alternative to using
multiple raycasts spread out (an example use being collision
detection in a custom ...
1
vote
1
answer
509
views
What would cause my script generated buttons and text to show in Unity and not on my phone?
I am using Unity 5 and the built in GUI tools. My static GUI shows up just fine which makes me think it's not a text/font issue or some such. Again, it all looks good in the Unity editor when I hit ...
1
vote
2
answers
537
views
player does not collide with walls unity 5
I just started a new proyect with a personalize first person controller, like arrow move style, it worked, but when I tryed to collide it with walls it did not happen, I tryed adding a capsule, then ...
-1
votes
1
answer
2k
views
How to change trail renderer start width dynamically by script in Unity?
I created a prefab that contains a trail renderer to draw a sprite in the GUI which I in a GameObject in a script.
I want to change the start width or end width of the trail renderer dynamically ...
0
votes
1
answer
918
views
How do I make the ui button to move my character? [closed]
How do I make my character move left,right and jump when click ui buttons using this code?
...
0
votes
1
answer
336
views
How to write a script for circular motion?
Сan any body explain me the script for the tangential motion,so that when i cut the rope circle should move tangentially:
3
votes
1
answer
9k
views
Unity 3D - Rotating an object in relation to its velocity
I am currently trying out Unity 3D and I've run into a problem. The problem is I have a car that moves along a road and then when it reaches a corner I would like it to turn the corner and have the ...
2
votes
1
answer
261
views
Multiple enemy collidiers
I currently have an enemy that upon collision kills the player with a kill script, I want to add another collider that acts as the visibility radius for said enemy. However, when adding another ...
2
votes
2
answers
4k
views
How to move a cube withour rolling it?
I am trying to move a cube with my keyboard on a plane surface. However, the cube always rolling instead of moving. How could I slide the cube on the plane?
What I have done:
I added a plane game ...
1
vote
2
answers
4k
views
Animator has not been initialized
My animation is working but unity keep saying that my Animator has not been initialized error
Here my Code:
...
3
votes
1
answer
549
views
Trying to get reference to Button in Javascript Unity3d
I've this simple script in Unity3d:
...
0
votes
1
answer
4k
views
How do I use rigidbody2d.AddForce to apply a force in the direction the object is facing?
I'm trying to create a thruster on a spaceship. It should add this thrust in the direction the thruster is facing, but I am at a loss on how to get that direction and send it to AddForce. Am I even ...
3
votes
1
answer
373
views
Understanding animations of controllable characters
I am a newbie trying to learn basics of Unity3D (5) before starting to do the real thing. Even though I tagged it as Unity3D, the logic should be the same for every kind of game engine. So I will be ...
-2
votes
1
answer
880
views
Script to change size of a cube when pressing a button [closed]
I am very new to coding and very bad at it.
In my environnement there is a table, and i would like, after pressing a keyboard button, to make a cube appear. Then, by pressing another button, i would ...
3
votes
1
answer
6k
views
How to enable IntelliSense for Unity scripts in Visual Studio?
I am using Visual Studio 2013 pro and Unity 4.6.
Whenever I write scripts (javascript or c#) for anything and open it up in Visual Studio, I don't get IntelliSense.
How to fix this issue?
1
vote
1
answer
7k
views
Insert 3d text to the front face of a cube GameObject
I want to add a text to a cube in Unity.
I have a cube which has a 3d text as a child.
I am using the below UnityScript to write on the 3d text:
...
3
votes
1
answer
725
views
Cannot use DLL in my Unity project
I'm pretty new in Unity and i'm trying to write reusable code to use across multiple "project". So I wrote this class to POST and GET highscore via WebRequest. I compiled the project to a DLL and ...
1
vote
1
answer
82
views
Importing code from unityscripts
To encourage code reuse- i want to import methods and classes defined in my core unityscripts to be imported into other unityscripts. How do i go about this?
Note: An answer here seems too ...
0
votes
1
answer
482
views
Can Java be used for developing games for Android in Unity3D [duplicate]
I only know Java Programming Language and no other. Can I develop games for Android in Unity3D using Java?
2
votes
5
answers
3k
views
Checking if object passed between two other objects
I have a three objects (strikers), lets say red, green and blue.
When I apply force to the green object I want to check if it has passed between red and blue or not. See the image below for an ...
5
votes
1
answer
16k
views
Screen record in unity3d [closed]
How to do screen record in unity? I want to record my screen(gameplay) during my running game. That should be play/stop , replay , save that recording on locally from device, open/load from my device (...
0
votes
1
answer
1k
views
Crop a texture procedurally
Is there a way to crop a texture having a list of triangles which represent the part to be kept?
For instance, I have a rectangular texture and I want to obtain a texture shaped by the triangle list I ...
0
votes
1
answer
761
views
Visual studio and Unity does not sync
I'm pretty new to Game Development world. I'm using Unity 3D (4.6 - Latest version I think) and Visual Studio to code the script and something when I edit the script un VS 2013 and go back to Unity ...
0
votes
0
answers
786
views
Adding Player Movement and Firing on Touch Input (Unity)
I am having many problems with this. I am a new game developer and I am using a Unity tutorial. But I want to add touch input for movement and a touch button for firing the weapon. How can I do this? ...
3
votes
2
answers
4k
views
2D Boat controlling physics
I'm working on a top-down 2D boat game with Unity3D. I couldn't able to understand how to implement physics of rudder controlling. My physics knowledge is not enough to think how rudder dynamics work. ...
6
votes
1
answer
2k
views
Multiple Scripts versus single script
I have (methink) a simple question regarding attaching scripts to a GameObject.
Is there any performance loss if I attach a script to a ...
0
votes
0
answers
1k
views
How do I fix this "java.lang.ClassNotFoundException" error?
I received my first crash report via the Google Developer Console, yesterday, and I'm completely lost.
This is my error message:
java.lang.ClassNotFoundException: Didn't find class "com.unity3d....
5
votes
1
answer
13k
views
How can I merge multiple sprite into one sprite or texture using Unity3d?
I have an avatar generator where someone can create a custom avatar with layers superimposed.
And in order to reuse this image multiple times, i want to merge all layers in one image.
Is there any way ...
2
votes
1
answer
31k
views
How to programmatically disable sprite renderer and mesh renderer in Unity3D?
In my game, I have an empty GameObject that has a sprite and a TextMesh as child. I want to access the child (sprite and the ...
1
vote
2
answers
7k
views
Resetting a level in unity when exiting to main menu
I have a pause screen in my game having two buttons : resume game and exit to main menu
The main menu have only 1 button wish is ...
1
vote
2
answers
224
views
Unity access method from separate script
I'm learning Unity3D and I'm practising accessing game object scripts from other objects. For the most part I've got it down, but I've run into a weird issue causing a NullPointerException.
I've set ...
3
votes
1
answer
2k
views
Unity's StartCoroutine funtionality inside a .NET Library and outside a MonoBehaviour
This code is used in a MonoBehaviour script in my current code:
...
-1
votes
1
answer
289
views
Float increment give wrong result [closed]
I found something weird with my unity code :
...
-1
votes
1
answer
3k
views
Yeild waitForSeconds(5.0) is not working
I am trying to call another function continuously from my Update() function. So, I have used yield WaitForSeconds(5.0); but, the it stops for the first 5 seconds and it does not stop the next time it ...
0
votes
1
answer
158
views
Why does this code not update my object's position?
I am trying to move the object in my frame in Time.deltaTime. I have not taken care the speed yet but the problem is, the object is almost at position (0,0) after ...
2
votes
1
answer
886
views
How to initialize once for all a static field of a custom editor in unity
I have a custom editor wich has a static field.
Suppose you have a static field of type MyObject:
...
0
votes
2
answers
291
views
Unity3D : Unity fails to detect null objects
im instantiating an object which is gonna play the background music for my game. On the Awake() function I check if there is a gameobject with the tag "MusicPlayer" on it, and if there isn't any I ...
3
votes
3
answers
5k
views
Unity Raycast shoots right through some objects
I made a melee combat system for my game. The code looks like this:
...
0
votes
1
answer
64
views
Destroy a single list member
im trying to destroy a single game object using the following script but it destroys all of them , not the ones I want. I want to destroy the ones that the transform that holds this script collides ...
3
votes
1
answer
806
views
Change unity physics engine speed
Is there a simple way to change the speed* of unity's physics engine like in the game SuperHot?
Any script language is ok but javascript is preferred.
*I am not sure if speed is the correct term.
0
votes
1
answer
142
views
Where should I put code if I want it to run automatically?
I'm new to programming and I found an animation script that has code that is called in the OnMouseDown event, when the user clicks the object. I'd like the code to ...
5
votes
3
answers
6k
views
How do I define a required component on a Unity game object?
I have a script that expected the game object to have a Terrain component.
Is there an attribute I can add (or some other way) which will prevent a designer from ...
0
votes
1
answer
1k
views
How to increase the rotation of a quaternion by a percentage of X % in a Unity script?
There is a simple way to increase the rotation described by a quaternion by a percentage X?
Sorry, but in the documentation of Unity3D I found nothing and I have a poor knowledge on the topic.
1
vote
2
answers
2k
views
StartCoroutine function inside TriggerOnEnter2D not working - unity + kinect
So i'm using Kinect with unity to track user's hand movements, and let the user's hand act as a mouse, I have written the code to detect a collision between a button (sprite object) and the hand ...
3
votes
1
answer
864
views
NGUI Texture Background Font of Sprite
I am new to Game Development and using NGUI plugin free version. There are few sprite images in my game. I made them prefab and instantiated at runtime. then I created NGUI Texture and Made it ...
-1
votes
1
answer
220
views
How to increase player Lifes count
I am new in Unity Game Development. I am designing infinite game using C# scripting.
There are many cubes in my game scene. if single cube is hit by player, He gets 100 points.
if same color, two ...
0
votes
1
answer
923
views
How to write a unity script to observe the position of a game object (during scene creation)
I want to write a simple Unity script to be notified when a game object is moved, during the creation of the scene.
More precisly, I want to write a Unity script that can recognize when the user ...
-1
votes
2
answers
7k
views
Unity 3D: Raycasting for gun hits
I am having trouble understanding raycast hits in Unity3D.
I am trying to create an FPS game, so I have a gun, bullets and so on.
My script for the bullets is:
...