Announcement

Collapse
No announcement yet.

Vray frame buffer missing

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • Vray frame buffer missing

    The vray frame buffer has gone missing.

    I've tried this trick:
    setAttr "vraySettings.vfbSettingsArr" -type Int32Array 0;
    Which worked earlier this morning.

    I tried deleting some nonesense in the .ma file.
    I deleted my prefs
    I restarted maya, and my computer.
    I unloaded and reloaded vray.
    I reinstalled vray.

    This happens even if I just start maya and create a cube and try to render it.
    I'm on vray 3.4.06 I think. Maya 2017



    I still cannot see my frame buffer. Until I can, I can't do much.

    Any ideas about other ways to fix this?

    Evan
    Last edited by evanerichards; 26-05-2017, 01:08 PM.

  • #2
    Have you tried this mel code:
    Code:
    vrayShowVFB;
    window -e -topLeftCorner 1 1 vfbPanelWindow;
    Zdravko Keremidchiev | chaos.com
    Chaos Support Representative | contact us

    Comment


    • #3
      No! Haven't tried that. When I'm back at work tomorrow I'll give it a shot.
      Thanks!

      Comment


      • #4
        Originally posted by Zdravko.Keremidchiev View Post
        Have you tried this mel code:
        Code:
        vrayShowVFB;
        window -e -topLeftCorner 1 1 vfbPanelWindow;
        Didn't work.

        When I type in that code it gives me this error message:
        // Error: line 2: window: Object 'vfbPanelWindow' not found.
        Last edited by evanerichards; 30-05-2017, 07:23 AM.

        Comment


        • #5
          Ok. So I've figured out the problem...but do not have a solution.
          After pulling my hair out for literally hours trying to figure out what is wrong, someone suggested plugging in a second monitor. I did. And lo and behold, there the vray frame buffer window sat like it had always been there. I moved it back onto my primary window and restarted maya. Renders to my second monitor. A monitor I didn't even have until the frame buffer went missing.

          How can I fix this? Is there a way to specify what monitor you want your frame buffer rendering to?
          There is a weird workaround that I'm using in the meantime. I click the "Show vray frame buffer" button and while it has focus and before I click anything else I hold down the windows key and then press the left arrow three times and that'll move it back onto my screen. But this isn't a great way to work.
          Any other ideas would be appreciated.

          Thanks!

          Comment


          • #6
            Code:
            for ($window in `lsUI -windows`) {
                if (`window -q -exists $window`==0)
                    continue;
                if (`window -q -mainWindow $window`!=0)
                    continue;
                window -e -tlc 0 0 $window;
            }
            This ?
            www.deex.info

            Comment


            • #7
              One cause of this happening is when you go from a 4k monitor to a 1k. A way to avoid it completely is to not use a floating window, but have it docked in Maya. Not sure if the VFB can do that.

              Comment


              • #8
                Code:
                for ($window in `lsUI -windows`) { if (`window -q -exists $window`==0) continue; if (`window -q -mainWindow $window`!=0) continue; window -e -tlc 0 0 $window; }
                this is now implemented as a VFB functionality in the latest official builds. Right click on the VFB icon > Reset VFB position

                A way to avoid it completely is to not use a floating window, but have it docked in Maya. Not sure if the VFB can do that.
                you can dock the VFB in a viewport space: Panels>Panel>V-Ray Frame Buffer
                Zdravko Keremidchiev | chaos.com
                Chaos Support Representative | contact us

                Comment


                • #9
                  Originally posted by Zdravko.Keremidchiev View Post
                  you can dock the VFB in a viewport space: Panels>Panel>V-Ray Frame Buffer
                  I do not see that menu option in Maya 2017 with Vray 3.52.

                  Comment


                  • #10
                    Originally posted by Zdravko.Keremidchiev View Post

                    you can dock the VFB in a viewport space: Panels>Panel>V-Ray Frame Buffer
                    Is this in latest nightly? I am on the latest official build and couldn't see this option in my Panels>Panel menu in Maya 2017 Update 3.

                    always curious...

                    Comment


                    • #11
                      Originally posted by bigbossfr View Post
                      Code:
                      for ($window in `lsUI -windows`) {
                      if (`window -q -exists $window`==0)
                      continue;
                      if (`window -q -mainWindow $window`!=0)
                      continue;
                      window -e -tlc 0 0 $window;
                      }
                      This ?
                      Will give it a shot.

                      Comment


                      • #12
                        Is this in latest nightly? I am on the latest official build and couldn't see this option in my Panels>Panel menu in Maya 2017 Update 3.
                        Unfortunately this feature is not available in Maya 2017
                        Zdravko Keremidchiev | chaos.com
                        Chaos Support Representative | contact us

                        Comment


                        • #13
                          Originally posted by Zdravko.Keremidchiev View Post
                          Unfortunately this feature is not available in Maya 2017
                          Can you specify which Maya version supports this feature?
                          always curious...

                          Comment


                          • #14
                            All Maya versions except 2017
                            Zdravko Keremidchiev | chaos.com
                            Chaos Support Representative | contact us

                            Comment


                            • #15
                              Originally posted by Zdravko.Keremidchiev View Post
                              All Maya versions except 2017
                              We'll keep the panel functionality disabled in future Maya versions as well.
                              V-Ray for Maya dev team lead

                              Comment

                              Working...
                              X