Problems with a player spawning and handling script
Here's the script, var spawnpoints : GameObject []; var isalive : boolean = true; var playerprefab : GameObject; var player : GameObject; var Target : GameObject; InvokeRepeating("checkalive", 0,...
View ArticleGet_GameObject non fatal error reoccuring
I have many scripts that use the 'get_GameObject' function, and errors like these keep appearing. ArgumentException: get_gameObject can only be called from the main thread. Constructors and field...
View ArticleScript is causing crashes and i Don't know what to do.
It's a simple script really, I'm a beginner of Javascript and coded it myself. #pragma strict var HP : float = 100; var body = gameObject; function Update () { if(HP < 1) { var instance : GameObject...
View Articleget component screws with the game.
var score : Deathmatchinfo = gameObject.GetComponent(Deathmatchinfo); This line in a script makes unity sad and gives me tons of errors in the console. I have been trying to fix it and nothing i'm...
View ArticleScript is causing immense lag, and I don't know what's causing it.
I have zombies in a game that fire mini projectiles at players, and have health scripts as well. I know it's one of their scripts because adding them to the game causes it to quickly become laggy, and...
View ArticleAutomatic fire in weapons
Im currently away from home and cant test this, but im asking anyway in case i have to ask anyway later.(on mobile at school.) i've been wondering about how to do an automatic weapon, and i'm asking...
View Articleweapon pickup doesn't find the gun in players inventory
Im building an arena styled shotoer game, where you have to pick up weapons in order to have them activated in the player. All the weapons are initially in the players inventory, but they are all set...
View ArticleAccess a GameObject through it's tag, using a string.
In a weapon pickup script i have, The script i have should find a gun, based upon it's tag. In order to reuse this script instead of having 9 different ones, I added a string variable called gunname....
View ArticleAI script troubles
I created an AI script, but it is having trouble. The enemy I'm putting the script on is supposed to be able to be spawned into the map multiple times, so i have to use a FindGameObjectsWithTag...
View Articlehow do i access the components in 3D texts
I'm doing a tycoony type thing, And want to make 3D texts hover over buttons to show what the button buys. However, I don't know how to reference a 3D text, because I couldn't find it in the Learn...
View ArticleUse of an AI script, and having it NOT go through walls using a character...
This questions arises from a different question regarding an AI script and is a continuation of the topic. While functional, has the enemy its used on go through walls. This is problematic on several...
View ArticleLight Flare transparency trouble
So I am made this light flare, And it should look like this against a black background, ![alt text][1] ![alt text][2] [1]: /storage/temp/26665-help1.png [2]: /storage/temp/26666-help2.png But looks...
View Article2.5D enemy-player tracking script does not work.
Because I don't know how to use the vector.dot thing, I made a roundabout method. There is a secondary part of an enemy that watches the player, and will change the direction of it's parent depending...
View ArticleMoving Platform Moves instantly.
This is the specific part of the movement in the script, function movenow(){ yield WaitForSeconds(DelayTime); transform.position = Vector3.Lerp(position1.transform.position,...
View ArticlePractical solutions for lag reduction?
I have a problem with a game system I have so far, there's no problems with any code, the enemies are made of many many little bits you can blow off with guns(The head alone has 35 parts.) The issue...
View ArticleShop system using Enum throws up errors.
This is a simplified part of the script where it doesn't work, enum Shoptype {R_Rock,R_Iron,R_Silver,R_Gold,R_Gems,R_Uranium,R_Voidium,R_Zarkotium,R_Omnium,ShipFuel,ShipHull,ShipMissiles}; var...
View ArticleMaking a less complicated save system.
because it never really was an issue previously, I would save character data using 8 or so different PlayerPrefs values. But I want to attempt to make an RPG, and the amount of data needed to save...
View ArticleWhat precisely does 'PlayerPrefs.Save' do?
The documentation page isn't exactly helpful explaining what it does. If I have several pref values, say what ID item the player has in their inventory slots, I could just do;...
View ArticleObnoxious Lines in gridbased world design
The basis for the levels I'm making in an RPG use many square textures to create the environment. But there is a problem with rendering in the game that keeps manifesting as lines between the blocks...
View ArticleEnforcing Higher levels of detail in textures
The project I'm working on keeps having as visual problem where textures with alpha channels have an ugly texturing effect the further they get. Is it possible to enforce higher levels of detail in...
View Article