14/05/31 07:38:57.65 7m/ngr53.net
具体的にどうしたいのかよくわからんけど
unity textfield enter
とかでググればそのキーコードでのイベントの取り方とかは
結構出てくると思うんだが。
参考になりそうなのはこの辺か?
URLリンク(answers.unity3d.com)
>試してないなら
if (Event.current.Equals (Event.KeyboardEvent ("return"))) enter = true;
のコードをテキストフィールドを作るGUIコールの「前に」置いてみろ。
If it's not already, try putting your if (Event.current.Equals (Event.KeyboardEvent ("return"))) enter = true; line before your GUI call to create the text field.