Answers for "unity how to use variable from another script"

C#
19

unity variable from another script

//Make Health public
public class PlayerScript: MonoBehaviour {
  public float Health = 100.0f;
}

//Access it.

public class Accessor : MonoBehaviour {
    void Start()
    {
        GameObject thePlayer = GameObject.Find("ThePlayer");
        PlayerScript playerScript = thePlayer.GetComponent<PlayerScript>();
        playerScript.Health -= 10.0f;
    }
}
Posted by: Guest on April-20-2020
1

unity access variables from other scripts

public class Accessor : MonoBehaviour {
    void Start()
    {
        GameObject thePlayer = GameObject.Find("ThePlayer");
        PlayerScript playerScript = thePlayer.GetComponent<PlayerScript>();
        playerScript.Health -= 10.0f;
    }
}
Posted by: Guest on January-20-2021
1

unity how to use variable from another script

using System.Collections;
using System.Collections.Generic;
using UnityEngine;

public class Miner : MonoBehaviour // A class made to mine coins
{
	private Variables variables; // "Variables" is the class name with my variables in it, "variables" is the name of it's variable in this class

	void Start()
	{
		variables = GameObject.Find("ScriptHolder").GetComponent<Variables>(); // "ScriptHolder" is the name of the GameObject that holds the Variables class
	}

	public void Mine()
	{
		variables.coins += variables.minePower; // This is how you reference your variables
	}
}
Posted by: Guest on April-10-2021
1

get variable from other scriptin unity c#

//-------------------------------PUT IN ScriptA-----------
public ScriptB = scriptB;

void Start()
{
  scriptB.myFloat = 3.542f;
}
//---------------------------------------------
//---------------------------PUT IN ScriptB---------
//make sure public so it can be accessed from other scripts.
public float myFloat;
//script a will change myFloat to 3.542 from null;
//note this is for Unity and C#
Posted by: Guest on September-01-2020

Code answers related to "unity how to use variable from another script"

C# Answers by Framework

Browse Popular Code Answers by Language