Quantcast
Channel: Answers by "Dreamblur"
Browsing all 56 articles
Browse latest View live
↧

Answer by Dreamblur

"active" is not a member of MonoBehaviour. Use "enabled". Change the type declaration of "wire" to your script's class.

View Article


Answer by Dreamblur

The error is telling you exactly what's wrong with your code. There is no overload for the method using those parameters. The method requires an AudioSource and a Vector3 as parameters (and an optional...

View Article


Answer by Dreamblur

[Sort][1] [Sort][2] [1]: http://msdn.microsoft.com/en-us/library/w56d4y5z.aspx [2]: http://msdn.microsoft.com/en-us/library/234b841s.aspx

View Article

Answer by Dreamblur

You're using the Raycast() method incorrectly. Raycast() takes either an origin point and a direction vector, or a ray, which is essentially the same thing. However, you're passing it an origin point...

View Article

Answer by Dreamblur

Once you attach an audio clip to a game object, you'll have access to the AudioSource members. With the game object which the audio clip is attached to currently selected, click on the fold-out option...

View Article


Answer by Dreamblur

Delete the last build and make another build from the edited version. Actually, you don't even have to delete the other build if you save the new build in a different location. I'm not sure if the new...

View Article

Answer by Dreamblur

Assuming that: Transform house; Transform plane; then either: house.rotation = plane.rotation; or: house.eulerAngles = plane.eulerAngles; should do exactly what you want.

View Article

Answer by Dreamblur

That's fine, as long as no money is made off of such activities.

View Article


Answer by Dreamblur

Game engines generally use tris and not polys.

View Article


Answer by Dreamblur

I haven't tested it in UnityScript yet, but it shouldn't be possible to invoke a coroutine. You're using yield in your function which makes it a coroutine.

View Article

Answer by Dreamblur

First of all, MovieTexture.isPlaying is not a script -- it's a variable in the MovieTexture class. And it's not a static member, which means you can only access it from an instance of the MovieTexture...

View Article

Answer by Dreamblur

Replace this line: if(Input.GetButtonDown("Fire1") && shots < maxShots) with this line: if(Input.GetButton("Fire1") && shots < maxShots)

View Article

Answer by Dreamblur

Get the positions of the player and of the enemy. Subtract those two and use the resulting vector as the direction vector for the velocity. No angle calculations required. EDIT: Kinda tricky with the...

View Article


Answer by Dreamblur

Make your arrays static. static var enemies : GameObject[]; static var items : GameObject[]; To access from any script: LevelArrays.enemies[0] (I've been using C# more than UnityScript lately, so if my...

View Article

Answer by Dreamblur

There's an error in one of your scripts. Fix the error first.

View Article


Answer by Dreamblur

First, get the position of wherever the objective is. Then, subtract the position of your character from that position to get the direction vector. Then, depending on the direction vector, switch the...

View Article

Answer by Dreamblur

A yielded coroutine will resume execution after all the Update() methods in the current frame have been called. Use: yield new WaitForEndOfFrame(); in your code rather than yield. EDIT: Actually, I...

View Article


Answer by Dreamblur

transform.right points to your game object's local x-axis. transform.up points to your game object's local y-axis. transform.forward points to your game object's local z-axis.

View Article

Answer by Dreamblur

You forgot to put a semi-colon after the last variable before your Start method.

View Article

Answer by Dreamblur

Either pilot isn't initialized or it doesn't have a ConstantForce component attached to it.

View Article
Browsing all 56 articles
Browse latest View live


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