Still awaiting moderation on my question?
It's been over a week and I'm pretty sure at this point that it's a bug? Could any admins or moderators help me out?
View ArticleError "OnTriggerEnter: this message has to be of type: Collider"
When attempting to use an OnTriggerEnter script, I get this error: Script error: OnTriggerEnter This message parameter has to be of type: Collider This message will be ignored my script: using...
View ArticleError CS1061
hello, the console is giving this error: " error CS1061: Type `UnityEngine.GameObject' does not contain a definition for `Addomponent' and no extension method `Addomponent' of type...
View ArticleUNet Command saying that its not being executed on the server
I have a simple command, all that it should do is change the authority of the object that is passed to it. For some reason, even when run through command, AssignAuthority returns the error...
View Articleerror cs0101
so i'm working on a game but i have this error with the respawn scripts, i have the script kill player for the death zone: `using UnityEngine; using System.Collections; public class LevelManager :...
View ArticleAssets/Scripts/GameManager.cs(24,33): error CS0029: Cannot implicitly convert...
using System.Collections; using System.Collections.Generic; using UnityEngine; using UnityEngine.SceneManagement; public class GameManager : MonoBehaviour { public int currentScore; public int...
View ArticleBonjour, j'ai l'erreur : "Assets/deplacement.js(13,24): UCE0001: ';'...
Voici le script: function Start () { } function Update () { Vector3 move = new Vector3(); if(Input.GetKey(KeyCode.LeftArrow)) move.x -= 0.1f; if(Input.GetKey(KeyCode.RightArrow)) move.x += 0.1f;...
View Articleerror CS1525: Unexpected symbol `class'
I'm trying to follow an rpg tutorial but the script to walk where clicked gives me an error: error CS1525: Unexpected symbol `class' Here is the c# code: using System.Collections; using...
View ArticleHow do i get rid of this "the name rb2d does not exist error"
Im learning how to make pong from a website, and I'm copying the code for the scrips as i should but i keep getting these errors and i don't know how to get rid of them. I am a Unity beginner.
View ArticleFailed to re-package resources
Hi I was asked to take over for this project. When i come to build the application i get this error, I am not really sure what to do as it is my first big unity project. The following is my error....
View ArticleIndex Out of Range Exception?
//conditions to check public int[] cause = { 0 //Enemy is at full health , 1 //Enemy health <= 90% , 2 //Enemy health <= 75% , 3 //Enemy health <= 50% , 4 //Enemy ehalth <= 25% , 5 //Owner...
View ArticleGetting errors?
So I am trying to access an Animation in my script, wait for a moment, then have the other animation play. It seems to work fine, but I am it is saying I have unexpected symbols- "Unexpected symbol )"...
View ArticleC# unexpected symbol error
im new to programming, this is my first code so i would really appreciate some help. I have this script that keeps giving me two errors, i`ve checked on the internet and i couldn`t find a solution. The...
View ArticleNullReferenceException: Object reference not set to an instance of an object...
This error has been bugging me... I know its probably a simple solution but I just cant see it :'( NullReferenceException: Object reference not set to an instance of an object Vehicle Controls.Start ()...
View ArticlePlease help!! Unity cannot connect to my projects - Many retries, internet...
Ok, so i logged in this morning to find this message in the console: Error loading...
View ArticleWaterBaseEditor.cs(11,17)
Assets/Standard Assets/Editor/Water/WaterBaseEditor.cs(11,17): error CS0246: The type or namespace name `WaterBase' could not be found. Are you missing an assembly reference? This error pops up at my...
View ArticlePosition is infinite
Hey, I'm trying to make a CameraZoomScript that makes it so that if I zoom in or out, the lower left corner stays exactly at 0, 0, 0. Since the camera has no adjustable pivot point I know of (please,...
View ArticleMy Player Character Have Infinite Jumping + ArgumentException Error
Hello, my character's game don't return to the floor after they has jumping (the jump is do by the character when I touch the screen, iPhone Project). I have this error in the console too >...
View ArticleIt is not possible to invoke an expression of type 'UnityEngine.Vector3'.
I know this has probably already been answered, but I still can't figure this out. I've been running this code: #pragma strict public var target : Transform; function Update () { transform.rotation.x =...
View Article