playMaker

Author Topic: How can I get this Array values from this script?  (Read 712 times)

Silicon Power

  • Full Member
  • ***
  • Posts: 186
How can I get this Array values from this script?
« on: January 04, 2020, 12:26:06 PM »
Hi I have this script that stores some vector3 values inside this Vector3[] points array. Now I want to store this array inside a PlayMaker Array! is that possible?

Code: [Select]
public class NewBehaviourScript : MonoBehaviour
{

    // Start is called before the first frame update
    void Start()
    {
     
    }

    // Update is called once per frame
    void Update()
    {


        // Get the middle points
        Vector3[] points = road.GetSplinePointsCenter();

   
    }
}

I use get properties but can't see this variable. 
« Last Edit: January 04, 2020, 12:39:13 PM by Silicon Power »