示例#1
0
//	// Use this for initialization
//	void Start () {
//
//	}
//
//	// Update is called once per frame
//	void Update () {
//
//	}

    public void DumpPlant()
    {
        Debug.Log("Plant Name: " + plantName +
                  " Moisture Required: " + moisture_required +
                  " Soil Fertility: " + soil_fertility +
                  " Photons Required: " + photonsRequired +
                  " Can Travel? " + canTravel +
                  " Plant State: " + plantState.ToString() +
                  " Image File String: " + imageFile +
                  " Plant Animation File String: " + plantAnimationFile);
    }