Unity3Dでゲームを構築しようとしていますが、Unity 5.1.1プロバージョンを使用しています。私はGoogle VR SDKをインポートしました。このエラー。Unity CS0308エラー:非ジェネリックメソッドをタイプ引数と一緒に使用できません
void Awake() {
#if !UNITY_5_2
// im getting a error on this line
GetComponentInChildren<VideoControlsManager>(true).Player = player;
#else
GetComponentInChildren<VideoControlsManager>().Player = player;
#endif
}
}
5.1.1のGetComponentInChildrenのシグネチャをチェックしましたか? – efekctive