• hello,

    I need help

    I want to load the scene :

    set (data [hlook].content, get(view.hlookat));
    set (data [vlook].content, get(view.vlookat));

    loadscene(scenea,view.hlookat=get(data[hlook].content)&view.vlookat=get(data[vlook].content),MERGE,BLEND(2));

    but i have a Black screen with with the values N/A for h/vlookat why ?


    thank you

  • Hi,

    the syntax is not valid - the get() can't be used there - the get() can be only used to resolve one single parameter when calling an action,

    here you would need to build the call first,
    e.g.

    Code
    <!-- build the call string and save it into a variable -->
    txtadd(myloadscenecall,'loadscene(scenea,view.hlookat=',get(data[hlook].content),'&amp;view.vlookat=',get(data[vlook].content),',MERGE,BLEND(2));');
    
    
    <!-- and call it -->
    myloadscenecall();

    best regards,
    Klaus

Jetzt mitmachen!

Sie haben noch kein Benutzerkonto auf unserer Seite? Registrieren Sie sich kostenlos und nehmen Sie an unserer Community teil!