Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,9 @@ public class GUIVector3Field : GUIBase
private GUIContent _content;
public GUIContent content { get { return _content; } }

public GUIVector3Field( GUIContent content, OnGUIAction action=null)
public GUIVector3Field( GUIContent content, Vector3 vec, OnGUIAction action=null)
{
vector = vec;
_content = content;
if( action != null)
{
Expand Down