Quantcast
Channel: Answers by "TobiasP"
Browsing latest articles
Browse All 72 View Live
↧

Answer by TobiasP

Basically, OnCollisionStay gives information about the impact ( impact velocity, etc ) as where OnTriggerStay simply says, yes, we have had a collision This will help explain them better then I can! =]...

View Article


Answer by TobiasP

This is from the Unity Script reference in the docs: Note: Make sure the GameObject you are trying to push has a rigidbody // this script pushes all rigidbodies that the character touches var pushPower...

View Article


Answer by TobiasP

If the script is attached to your character use this: renderer.material.color = Color.(choose a colour) Or renderer.material.color = new Color(r,g,b,a); (red, green, blue, alpha)

View Article

Answer by TobiasP

Try this: this.transform.eulerAngles = new Vector3(this.transform.eulerAngles.x, this.transform.eulerAngles.y, 0);

View Article

Answer by TobiasP

IEnumerator Wait() { while(true) { yield return new WaitForSeconds(1); myInt += 2; } } Just use myInt -= 2; if you want it to go down. Hope this helps!

View Article


Answer by TobiasP

First, the variable/method must be **public** To get the a variable or call a method from the parent: Script parentScript = this.transform.parent.GetComponent

View Article

Answer by TobiasP

Ok, So I hope you don't get mad, but I changed and added a few things. The way you were doing it wasn't going to work because it will turn off both player's movement controls and other issues. I made...

View Article

Answer by TobiasP

This is what I did for missiles following an enemy. // Get the direction we need to rotate towards rotation = Quaternion.LookRotation(target.position - this.transform.position); // Rotate towards the...

View Article


Answer by TobiasP

This is a bunch of awesome, free tutorials. [Walker Brothers Studio][1] [1]: http://walkerboystudio.com/html/unity_training___free__.html

View Article


Answer by TobiasP

This should work! healthbarWidth = (currentHealth / maxHealth) * healthbarOriginalWidth; I hope the variable names are representative enough! Hope this helps!

View Article

Answer by TobiasP

This should get you what you want. [Triangle Prism][1] [1]: http://blog.nobel-joergensen.com/2010/12/25/procedural-generated-mesh-in-unity/

View Article

Answer by TobiasP

File - Build Settings: Add your scenes and build! ![alt text][1] [1]: http://i.imgur.com/zvuyxY6.png

View Article

Answer by TobiasP

Spawn an Empty GameObject, place it where you want your object to go, then child your object to the Empty GameObjecy. (I had this issue too but I was using a collectable and manually placing it!) Hope...

View Article


Answer by TobiasP

It should ignore collision between those two objects if specific conditions are met (look at link). [Reference][1] [1]: http://docs.unity3d.com/Documentation/ScriptReference/Physics.IgnoreCollision.html

View Article

Answer by TobiasP

There are multiple ways! GameObject.FindGameObjectWithTag(); GameObject.FindGameObjectOfType<>(); Resources.Load(); The third one you need to make a folder called "Resources". Say you have a...

View Article


Answer by TobiasP

Uncheck 3D sound in the sound's options! ![alt text][1] Hope this helps =] [1]: http://i.imgur.com/rB3Rdlu.png

View Article

Answer by TobiasP

I had the exact idea a year or so ago and made a quick prototype. I didn't have enough skill back then to finish my idea, and it has a few glitches, but maybe you can do more with it then me! (It uses...

View Article


Answer by TobiasP

private bool eventHappened; void Update() { if(eventHappened) { eventHappened = false; StartCoroutine(Lerp()); } } private IEnumerator Lerp() { while(true) { this.transform.position =...

View Article

Answer by TobiasP

I would just make a script called GameData and put it on the camera. Then any script that needs it can access it: void Start() { playerName = Camera.main.getComponent().playerName; }

View Article

Answer by TobiasP

Hey again! There are several ways. I usually use MoveTowards. This doesn't have slowing down near the end and you can pretty much compare the positions. if (theObject.transform.position == end) If you...

View Article

Answer by TobiasP

There are multiple ways to do this. Just go to this page: [Unity Doc][1] and hit CTRL + F and type in "Find". All of these methods will find a gameobject based on a string. Then you just use...

View Article


Answer by TobiasP

if (Input.GetKey("space")) { Jump(); } Of course, in the Jump function, check if their grounded. If they are, jump! Once their grounded again, allow them to jump again unless this is a jetpack where...

View Article


Answer by TobiasP

**Future Readers:** I got the answer from the helpful people over at [Rotorz][1] Tile System! (which, btw, you should check out! Their system is simply amazing!) **The Issue:** Multiple scales will...

View Article

Answer by TobiasP

[Answer][1] [1]: http://forum.unity3d.com/threads/238430-SetCurve-and-boolean-operations

View Article
Browsing latest articles
Browse All 72 View Live


<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>