Answer by Superrodan
Ok, so it seems the best practice is not to use pngs, but to use psds instead. The reason I didn't do so is that I was worried about file size (my psds are nearly five times the sixe of my pngs), but...
View ArticleAnswer by Superrodan
I'm not sure how exactly you're painting your grid, but one way to do it might be to paint the grid with a projector. You can tell a projector to ignore the default layer, and then you could set any...
View ArticleAnswer by Superrodan
The second bracket is in the wrong spot. it should be after your if statement not before your if statement. Like this: void Awake() { if( Application.loadedLevelName == "Level 01") {...
View ArticleAnswer by Superrodan
If you call the don't destroy on load function on your music player, then it won't be destroyed when you switch between scenes. The only problem is that if you return to the scene where you started the...
View ArticleAnswer by Superrodan
Ok, so the answer was simple and I was WAY overthinking it. Instead of using a transparent background in photoshop I just needed a layer of white beneath the decal. Now it works perfectly and I can get...
View ArticleAnswer by Superrodan
The way to do this is to have a variable you store somewhere globally. I did this with a playerprefs variable so that if I turned off the game and came back it would remember the volume I wanted. So...
View ArticleAnswer by Superrodan
Warning: This is just a guess. I don't think you want to animate the ball but I'm also not sure making it into a physics object is the right approach either. Instead you probably want the ball to be...
View ArticleAnswer by Superrodan
This thread might help you: http://forum.unity3d.com/threads/dynamic-draw-order-or-2d-z-buffer.220231/ Specifically this post:...
View ArticleAnswer by Superrodan
I'm not 100 percent sure because I'm also a novice but I think the problem is that you have the parenthesis in there. Room is not a function so you do not need parenthesis. new Room()[roomDensity];...
View ArticleAnswer by Superrodan
For me the easiest way to accomplish this is with "Invoke". http://docs.unity3d.com/ScriptReference/MonoBehaviour.Invoke.html Put whatever you want to be delayed into its own function and then invoke...
View ArticleAnswer by Superrodan
You may need to disable mip maps for the texture you are using. To do so, click the texture file itself in the editor, and uncheck "Generate Mip Maps" if it is checked.
View ArticleAnswer by Superrodan
What you want to do is use "transform.forward" in your code instead of Vector3.forward. Vector3.forward is in world space and always goes in one direction based on world space. "transform.forward" goes...
View ArticleAnswer by Superrodan
Does it work if you change this line: player = GameObject.FindGameObjectWithTag("AIPlayer").GetComponent(); to player = this.gameObject.GetComponent(); Because this script is on every enemy, I believe...
View ArticleAnswer by Superrodan
When you return to the menu you will have duplicate objects. Both objects have this code on them: if (FindObjectsOfType(GetType()).Length > 2) { Destroy(gameObject); } What I believe might be...
View ArticleAnswer by Superrodan
In this example if it can't find a float with the NAME key then it will use the 1.0f. PlayerPrefs.GetFloat("NAME", 1.0f); In this example it would return 0.0f as the default since you didn't set...
View ArticleAnswer by Superrodan
I think what you may want to do is have code like this pseudo-code below on the object you want to update the information in the slider: private Slider health; private Slider mana; private Slider...
View ArticleAnswer by Superrodan
Is your ball a class? As in the above variables are in a single script called something like "Ball"? If so, you'll probably want to use a List. Here's a tutorial about Lists that makes it easy:...
View ArticleAnswer by Superrodan
The below is just theory and how I would go about trying to accomplish this using the built in 4.6 UI. Step 1. In whatever script handles your input, instead of the code where you detect input...
View ArticleAnswer by Superrodan
The two scripts you have look a little redundant. The first one is a trigger script specifically meant to raise a specific wall. It finds an object in the scene called "verticalWall_1" and raises that...
View ArticleAnswer by Superrodan
You can't change an individual color value directly I can't explain why but I can tell you how to fix it. Color temp = button.image.color; temp.a=0.5f; button.image.color = temp;
View Article