Legacy Documentation: Version 5.0
Language: English
  • C#
  • JS

Script language

Select your preferred scripting language. All code snippets will be displayed in this language.

LightProbeGroup.probePositions

Suggest a change

Success!

Thank you for helping us improve the quality of Unity Documentation. Although we cannot accept all submissions, we do read each suggested change from our users and will make updates where applicable.

Close

Sumbission failed

For some reason your suggested change could not be submitted. Please try again in a few minutes. And thank you for taking the time to help us improve the quality of Unity Documentation.

Close

Cancel

Switch to Manual
public var probePositions: Vector3[];
public Vector3[] probePositions;

Description

Editor only function to access and modify probe positions.

Probe positions are specified in local space relative to the parent object.

At runtime this function will return an empty Vector3 array and setting it will have no effect.

	// Create four probe positions which will form a tetrahedron.
	
	class LightProbePositions extends EditorWindow {

var lightProbes : LightProbeGroup = null; @MenuItem ("Examples/Set Probe Positions") static function Init () { var window = GetWindow (LightProbePositions); window.Show (); } function OnGUI () { lightProbes = EditorGUILayout.ObjectField ( "Find Dependency", lightProbes, LightProbeGroup, true); if (lightProbes) { if (GUILayout.Button ("Set Probe Positions")) { lightProbes.probePositions = [ Vector3 (0,0,0), Vector3 (1,0,0), Vector3 (0,1,0), Vector3 (1,1,1) ]; } } else { EditorGUILayout.LabelField ("Missing:", "Please select an object first!"); } } }