robert.malzan

Forum Replies Created

Viewing 15 posts - 106 through 120 (of 200 total)
  • Author
    Posts
  • April 25, 2025 at 3:26 pm #1481

    Did you export it in glb format? This is our “natural” format and will not be altered during import. Also, I get that sometimes too until I remember that the sunlight is very bright at the default setting, so the colors appear a bit washed out. You may want to play around with the sun settings (angle, color, and intensity) to get better results.

    April 25, 2025 at 3:21 pm #1480

    Great! Then please send me the file when you’re done coding

    April 25, 2025 at 3:20 pm #1479

    I enjoyed our meeting and look forward to our next chat 😉

    April 17, 2025 at 3:36 pm #1475

    Hi Nzc,

    I wasn’t aware  that you were planning to create an android app. That complicates matters. I’m afraid I can’t help you there. I don’t know how the player app and the tool set are supposed to be installed on the phone. The media is some data on a server? I think you’ll have to discuss this with your mentor. Sorry about that.

    April 16, 2025 at 12:08 pm #1472

    Now you can find all the available assemblies which you can use in the WB here.

    April 16, 2025 at 12:01 pm #1471

    I’m afraid your text was lost by the forum frontend. Please send me your problem description (and Player.log) to robert.malzan@nuromedia.com

    April 16, 2025 at 11:59 am #1470

    I believe we just discussed that in our bi-weekly meeting. Probably your explanation was somehow lost. But you can send me an email with all the details to robert.malzan@nuromedia.com

    April 16, 2025 at 11:58 am #1469

    Please always submit your Player.log file when something like that occurs. In case you are using your own scripts, You also might want to post that script here, then I might be able to fix the problem.

    April 14, 2025 at 11:05 am #1459

    I’m having trouble finding a 360° video for testing. Can you point me to a site where I might download such files or could you upload some of yours for me to use (testing only)? Currently, development was halted because I can’t find any videos.

    April 13, 2025 at 11:24 am #1458

    You POST a message like this

    
    private class LoginSendMessage
    {
    public string email;
    public string password;
    }
    

    or rather

    
    {
    "email": "your shop email address",
    "password": "your shop password"
    }
    

    (serialized as a JSON string) to "https://xr4ed.cellock.com/micro_auth/oauth/login". Then you should receive a JSON-encoded message like this

    
    private class ResponseData
    {
    public string accessToken;
    public string refreshToken;
    public UserData data;
    }
    

    or rather

    
    {
    "accessToken": "SOME STRING VALUE",
    "refreshToken": "another string value",
    "UserData": something else which you don't need
    }
    

    which you need to deserialize to get to the accessToken.

    Regarding the WebRequest node, you input a string (text node) "Content-Type: application/json" into the header input and the JSON file with your email and password into the Payload input, put the above mentioned URL into the text input field in the node to send the request.

    The result (a json-encoded) string comes out of the Value output in case of success. Then, you use a JSON node to extract the token which you then store into a signal variable. The string to extract the token from the json string in the JSON node is “.accessToken”.

    That should get you started.

    April 11, 2025 at 11:51 am #1455

    Hand tracking is now implemented in Release 0.2.2. You can download it now. The setup is as follows:

    In the hierarchy, you’ll find

    Hope this helps!

    Bob

    April 10, 2025 at 5:32 pm #1449

    The endpoints are described here. Please refer to Cellock for more information. You might think you have to write your own Login Plugin, but this plugin type is only meant to be used by the WB. If you want your project to call the XR4ED API, then you can theoretically use our WebRequest Node and JSON node to interact with the Backend from Cellock. It is still complicated but doable with some experience.

    Does this answer your question?

    April 10, 2025 at 11:49 am #1446

    Yes, we want 360° Videos, non-stereoscopic for now. Can you work with that? Do you have a link you could share where I can download such a video?

    If all goes well, we should have our next release ready after 2-3 weeks.

    April 9, 2025 at 2:19 pm #1444

    Can I consider this thread to be solved? If so, would you be willing to share your code? Either other colleagues can benefit from your success or perhaps you’d like to “donate” the code so we can integrate it into the WB code base to make it available for everyone.

    April 9, 2025 at 2:16 pm #1443

    In the next release, we have a very nice 360° Image projection. The video will have to wait until the release after, but we will do it unless you want to? With the runtime scripting, you can write your own Nodes for the Logic Editor.

Viewing 15 posts - 106 through 120 (of 200 total)