Jump to content

bipul mohanto

Verified Members
  • Posts

    20
  • Joined

  • Last visited

Reputation

0 Neutral

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

  1. @ArAnish, did you mean .uproject file? I tried this, but getting the same error message as this question mentioned, any solution?
  2. In connection with my question, cannot I build the unreal engine while the sranipal is in the source plugins folder `C:\UnrealEngine\Engine\Plugins`? While I was trying this: the output build messages were with error message: Severity Code Description Project File Line Suppression State Error MSB3075 The command "..\..\Build\BatchFiles\Build.bat -Target="UE4Editor Win64 Development" -Target="ShaderCompileWorker Win64 Development -Quiet" -WaitMutex -FromMsBuild" exited with code 5. Please verify that you have sufficient rights to run this command. UE4 C:\Program Files (x86)\Microsoft Visual Studio\2017\Community\Common7\IDE\VC\VCTargets\Microsoft.MakeFile.Targets 44 1> Running UnrealHeaderTool UE4Editor "C:\UnrealEngine\Engine\Intermediate\Build\Win64\UE4Editor\Development\UE4Editor.uhtmanifest" -LogCmds="loginit warning, logexit warning, logdatabase error" -Unattended -WarningsAsErrors 1>C:/UnrealEngine/Engine/Plugins/SRanipal/Source/SRanipalEye/Public/DartBoard.h(25) : LogCompile: Error: An explicit Category specifier is required for any property exposed to the editor or Blueprints in an Engine module. 1>C:/UnrealEngine/Engine/Plugins/SRanipal/Source/SRanipalEye/Public/DartBoard.h(27) : LogCompile: Error: An explicit Category specifier is required for any property exposed to the editor or Blueprints in an Engine module. 1>C:/UnrealEngine/Engine/Plugins/SRanipal/Source/SRanipalEye/Public/DartBoard.h(29) : LogCompile: Error: An explicit Category specifier is required for any property exposed to the editor or Blueprints in an Engine module. 1>C:/UnrealEngine/Engine/Plugins/SRanipal/Source/SRanipalEye/Public/SRanipal_AvatarEyeSample.h(28) : LogCompile: Error: An explicit Category specifier is required for any property exposed to the editor or Blueprints in an Engine module. 1>C:/UnrealEngine/Engine/Plugins/SRanipal/Source/SRanipalEye/Public/SRanipal_AvatarEyeSample.h(31) : LogCompile: Error: An explicit Category specifier is required for any property exposed to the editor or Blueprints in an Engine module. 1>C:/UnrealEngine/Engine/Plugins/SRanipal/Source/SRanipalEye/Public/SRanipal_AvatarEyeSample.h(34) : LogCompile: Error: An explicit Category specifier is required for any property exposed to the editor or Blueprints in an Engine module. 1>C:/UnrealEngine/Engine/Plugins/SRanipal/Source/SRanipalEye/Public/SRanipal_AvatarEyeSample.h(36) : LogCompile: Error: An explicit Category specifier is required for any property exposed to the editor or Blueprints in an Engine module. 1>C:/UnrealEngine/Engine/Plugins/SRanipal/Source/SRanipalEye/Public/SRanipal_AvatarEyeSample.h(38) : LogCompile: Error: An explicit Category specifier is required for any property exposed to the editor or Blueprints in an Engine module. 1>C:/UnrealEngine/Engine/Plugins/SRanipal/Source/SRanipalEye/Public/SRanipal_AvatarEyeSample.h(41) : LogCompile: Error: An explicit Category specifier is required for any property exposed to the editor or Blueprints in an Engine module. 1>C:/UnrealEngine/Engine/Plugins/SRanipal/Source/SRanipalEye/Public/SRanipal_AvatarEyeSample.h(43) : LogCompile: Error: An explicit Category specifier is required for any property exposed to the editor or Blueprints in an Engine module. 1>C:/UnrealEngine/Engine/Plugins/SRanipal/Source/SRanipalEye/Public/SRanipal_AvatarEyeSample.h(46) : LogCompile: Error: An explicit Category specifier is required for any property exposed to the editor or Blueprints in an Engine module. 1>C:/UnrealEngine/Engine/Plugins/SRanipal/Source/SRanipalEye/Public/SRanipal_AvatarEyeSample.h(50) : LogCompile: Error: An explicit Category specifier is required for any property exposed to the editor or Blueprints in an Engine module. 1>C:/UnrealEngine/Engine/Plugins/SRanipal/Source/SRanipalLip/Public/SRanipal_AvatarLipSample.h(27) : LogCompile: Error: An explicit Category specifier is required for any property exposed to the editor or Blueprints in an Engine module. 1>C:/UnrealEngine/Engine/Plugins/SRanipal/Source/SRanipalLip/Public/SRanipal_AvatarLipSample.h(31) : LogCompile: Error: An explicit Category specifier is required for any property exposed to the editor or Blueprints in an Engine module. 1>C:/UnrealEngine/Engine/Plugins/SRanipal/Source/SRanipalLip/Public/SRanipal_AvatarLipSample.h(34) : LogCompile: Error: An explicit Category specifier is required for any property exposed to the editor or Blueprints in an Engine module. 1>C:/UnrealEngine/Engine/Plugins/SRanipal/Source/SRanipalLip/Public/SRanipal_AvatarLipSample.h(36) : LogCompile: Error: An explicit Category specifier is required for any property exposed to the editor or Blueprints in an Engine module. 1>C:/UnrealEngine/Engine/Plugins/SRanipal/Source/SRanipalLip/Public/SRanipal_AvatarLipSample.h(38) : LogCompile: Error: An explicit Category specifier is required for any property exposed to the editor or Blueprints in an Engine module.
  3. Hi! I am following @MariosBikos VRS tutorial on unreal 4.24.2 source code version. I have already steamvr, sranipal runtime, and calibration done. After building the unreal source code I am creating a new project: Games >> Virtual Reality>> Blueprint (cannot see the C++ option). I am pasting the sranipal SDK v1.3.6.8 in the project folder under Plugins/SRanipal Before that, I have modified the SRanipal.Build.cs /* PublicIncludePaths.AddRange( new string[] { Path.GetFullPath(Path.Combine(ModuleDirectory, ".."))+"/SRanipal/Public" // ... add public include paths required here ... } ); PrivateIncludePaths.AddRange( new string[] { ModuleDirectory+"/Private", ModuleDirectory+"/Public/Eye", ModuleDirectory+"/Public/Lip", Path.GetFullPath(Path.Combine(ModuleDirectory, ".."))+"/SRanipalEye/Public", Path.GetFullPath(Path.Combine(ModuleDirectory, ".."))+"/SRanipalLip/Public" // ... add other private include paths required here ... } ); */ PublicIncludePaths.Add(Path.Combine(ModuleDirectory,"Public/Eye")); PublicIncludePaths.Add(Path.Combine(ModuleDirectory,"Public/Lip")); PrivateIncludePaths.Add(Path.Combine(ModuleDirectory,"Private/Eye")); However, while in the project, I cannot see the sranipal plugin under edit>> plugin>> project. while I am trying to reopen the project, I am getting the following error message and the project fails to reopen: Could you please assist me in solving the problem to enable eye tracking?
  4. I have a few questions for clarification: 1. I have cloned the 4.24.2. Instead of some minor errors, the UE is launching. In part 1, (8) to launch the UE, do I always have to follow the step: Open the .sln, then Debug > Start New Instance? Or is there any other way that I can directly run UE like a normal installation? 2. Part 2: 12, 13, 15: I have downloaded SRanipal v1.3.6.6. Extracting the .zip file includes Plugins\SRanipal. I am copy-pasting this plugins folder in a new project under a different directory than the unreal engine cloned (C:\ directory). But in Edit> Plugins, I cannot see the SRanipal plugin. C:\Users\local-admin\Downloads\unity\SDK-v1.3.6.6\SDK-v1.3.6.6\SDK\03_Unreal\Vive-SRanipal-Unreal-Plugin.zip 3. Part 2: 14, I do not see an error in Dartboard.h. But if someone has a problem, did you mean editing SRanipal.Build.cs as follows: PublicIncludePaths.AddRange( new string[] { //Path.GetFullPath(Path.Combine(ModuleDirectory, ".."))+"/SRanipal/Public" // ... add public include paths required here ... // from tutorial PublicIncludePaths.Add(Path.Combine(ModuleDirectory, "Public/Eye")); //PublicIncludePaths.Add(Path.Combine(ModuleDirectory, "Public/Lip")); } ); PrivateIncludePaths.AddRange( new string[] { ModuleDirectory+"/Private", ModuleDirectory+"/Public/Eye", ModuleDirectory+"/Public/Lip", Path.GetFullPath(Path.Combine(ModuleDirectory, ".."))+"/SRanipalEye/Public", Path.GetFullPath(Path.Combine(ModuleDirectory, ".."))+"/SRanipalLip/Public"; // ... add other private include paths required here ... // from tutorial PrivateIncludePaths.Add(Path.Combine(ModuleDirectory, "Private/Eye")); //PrivateIncludePaths.Add(Path.Combine(ModuleDirectory, "Private/Lip")); } ); 4. Reopening the project returns an error as the image:
  5. Is there any confirmation from the Vive official? I also need the average luminance value for my calculation.
  6. I do not why the Vive developer forum is so cold? There is hardly any conversation found or solution. However, SRanipal does not have support for Linux what I found. Now question is, what is Vive's suggestion for XR developers to access real-time eye tracking?
  7. @HackPerception, I have previously contacted Tobii for support, they mentioned could not support for Vive pro eye headset.
  8. Hello Everyone, I am a newbie in this topic. I have just started with Linux (Ubuntu 20.04.4) and found there is no SRanipal Runtime for Linux. I am using `HTC Vive Pro Eye` and previously once I talked with Tobii, and they mentioned their SDK is not working for Vive Pro Eye. If you guys give me some solution to access real-time eye tracking data same as I could access in Windows (SRanipal+SteamVR)?
  9. Hello, I just switched to Linux (Ubuntu), and am trying to find SRanipal runtime for my SteamVR. Does `SRanipal` only work in windows machine? Is there no support for Linux? If so, is there any alternative eye tracking runtime software? I am using VIVE Pro Eye.
  10. Hi, I have just started my journey in VR. Currently I have a vive pro eye, and my goal is stereo rendering. I found there are three types of functions, Khronos' core, cross vendor, and vendor specific. Are there any (possible yes) vive specific functions? Where I can find those? Microsoft Page has beginner friendly documentation with their own specifications for MR. I see in this forum, there is also some documentation of Vive OpenXR for Unity and Unreal Engine. But I am looking for some tutorial how to visualize easily on my Vive Pro Eye Display, and native C++ Project. Can you show me some light? Will Microsoft OpenXR (MR) work for Vive Pro Eye?
  11. Hello! These Vive OpenXR tutorials are really good with Unity and Unreal. However, is there any vendor specific (Vive ) functions and tutorial for native C++ project? I am using Vive Pro Eye.
  12. Hi! I am using HTC Vive Pro Eye, and want to setup OpenXR. I do not want to use Unreal Engine, Unity3D, or any other game engine, because so far I know, none of the game engines included real-time raytracing feature for VR. Literally, I want to build my own raytracing engine with DX12. How can I setup OpenXR for my purpose? Is there any available tutorial? I did not find any details on that except the MSFS documentation.
×
×
  • Create New...