Referencing an Array of Objects
I want one script to cross reference multiple copies of a prefab in the scene. So when I click on a GUI button, it will manipulate all of the prefabs I have assigned in another script. Anyone know how...
View Article"Horizontal" script referencing in C#
I'm trying to switch over from Javascript to C#, as you might have guessed, and I'm just wondering about how I can get scripts to refer to scripts in the same script compilation stage. I understand...
View ArticleOn trigger and button input to enable/disable script
hello everyone, im tryin to make a script to attach on a gameobject that will find my player via tag and enable/disable the third person controller script on key press, i went on to do this by using...
View ArticleHow to use methods with the same name from different scripts attached to this...
How do I reference a generic script in another script? So lets say Object AO has script AS with method name "Method()". Another object BO has a script BS with the same name "Method()". Now, I want to...
View ArticlePrefab doesn't hold my script reference?
Hello there, So I have a Prefab that is randomly generated through a spawner in my level...however the "ScoreManager" script reference (an instance = null script) doesn't apply to the Prefab itself,...
View Articleerror CS0131 Assets/route1.cs(12,25): error CS0131: The left-hand side of an...
really would like some help to make this right. i know its probably something easy I just keep running into a blank wall. first script: public class route1 : MonoBehaviour { public bool r1; void...
View ArticleProblem when acessing a list from another script? (ArgumentOutOfRangeException)
------ **Edit: With the tip given by @gjf, i have changed in the parent script the function "Start" to "Awake", in this way i guarantee that the list is created before the child objects try to load,...
View ArticleHow do I link variables in between two scripts in c#
guys I feel silly have been looking the whole day in unity answers but my script still doesn't work been trying to use gameobject method to link my shieldHP with mytest manager to see if the shield...
View ArticleHow do you refference SetActive (true) from another script?
I'm using 2 scripts. One for the SetActive PauseMenu.cs public void Start() { PauseUI.SetActive (false); } //Pause Menu Trigger public void Update() { if (Input.GetButtonDown ("Pause")) { paused =...
View ArticleReferencing another script error/problem
I am trying to reference another script for my game Pong 2D this is the Ball script for the game At the line "TriggerEvent = RightSideScene.GetComponent(TriggerEvent)();" I get the error "Argument1:...
View ArticleCleaning project? After uninstalling an asset
I've just uninstalled an editor based asset and I'm getting the classic error `The referenced script on this Behaviour is missing!` I have check the game object and all its children which the error is...
View ArticleNoob q: how to access functions in script that is in asset folder/view?
Hi, I just snagged a graphing asset from the store and after import and placing it in the correctly named folders I can't figure out how to access a function in the main class. I assumed I could create...
View ArticleComponents arent being found in script references
I had recently moved everything on my original character to a new mesh I modeled and at first it was working perfectly and then I added an animator to the character to start animating it then i pressed...
View ArticleCreate Unity App that read c# files ?
Hi guys! I'm trying to develop an Unity app (.exe ) that can show me all my scripts. My idea is to create a scriptable object with this paramaters: -name of the script -draggable script (.cs) -tags /...
View ArticleWhat is the best way to create this Scoresystem ?
Hi, i am currently trying to create a Gamewide System which gets the highest score from Google Play Games and then create Stages based on that Score. For example : Highscore = 1000 - Stage 1 0 - 100...
View ArticleReferencing variables from another script each time it is needed.
Hi guys! I'm currently making a **fps multiplayer** sci- fi game. I have a **GunManager script** that takes care of **shooting, reloading and gun switching**. this script gets variables from another...
View ArticleReference to a general type of script independent of its class name
I want to have a class to reference a script, but that script is not the same every time. For example: public class PlayerController : MonoBehaviour { public InputActions inputActions; public...
View Article,Getting a Spawner Manager Script to reference a Spawner
Okay, so, I have coded a Spawner class with code that houses two prefabs to spawn at a certain speed based on whether or not a 0 or 1 gets inputed. I also have a separate SpawnManager class that...
View ArticleAlternative to FindObjectOfType and calling function from another script
Hi, I'm relatively new to unity and I'm trying to call a function from another script to update the score of the game whenever i destroy a gameobject (target), but I can only do it with...
View Article