UnityException: InternalCreateBuffer is not allowed to be called from a ScriptableObject constructor (or instance field initializer), call it in OnEnable instead. Called from ScriptableObject ‘SteamVR_Update’.
解决方案:找到“SteamVR_Update”脚本 ,注销wwwVersion = new WWW(versionUrl);这行,如下:
static SteamVR_Update()
{
// wwwVersion = new WWW(versionUrl);
EditorApplication.update += Update;
}