Maya Modeling Tips to Speed Up Your Workflow

Поділитися
Вставка
  • Опубліковано 12 січ 2025

КОМЕНТАРІ • 21

  • @OnMars3D
    @OnMars3D  4 роки тому +3

    Scripts used in the video (make sure to save these as MEL scripts) as well as updated for Maya 2022
    :
    ----------------------------------------------------------------------
    Maya 2022 X-Ray Toggle Script:
    ----------------------------------------------------------------------
    // get last panel that recieved focus
    string $panel = `getPanel -wf`;
    // toggle xray mode
    modelEditor -e -xray ( !`modelEditor -q -xray $panel` ) $panel;
    ----------------------------------------------------------------------
    Maya 2022 Wireframe Toggle Script:
    ----------------------------------------------------------------------
    string $selectedPanel = `getPanel -wf`;
    int $shadedWireState = `modelEditor -q -wos $selectedPanel`;
    if(`modelEditor -ex $selectedPanel`)
    {
    setWireframeOnShadedOption (!$shadedWireState) $selectedPanel;
    }
    -----------------------------------
    X-Ray Toggle Script:
    -----------------------------------
    // Toggle Xray
    //
    string $visPanel[]=`getPanel -vis`;
    int $mode;
    if (size($visPanel)>0)
    {
    for ($panel in $visPanel)
    {
    if (`match "^modelPanel" $panel`=="modelPanel")
    {
    $mode=`modelEditor -q -xray $panel`;
    if ($mode>0)
    modelEditor -e -xray 0 $panel;
    else
    modelEditor -e -xray 1 $panel;
    }
    }
    print ("
    xray="+$mode+".");
    } else
    print ("
    No model panels to modify.");
    ------------------------------------------------------------
    Wireframe on Shaded Toggle Script:
    ------------------------------------------------------------
    // Toggle Wireframe on Shaded
    //
    {
    string $currentPanel = `getPanel -underPointer`;
    $WOS = `modelEditor -q -wos $currentPanel`;
    if ($WOS == 0)
    {
    setWireframeOnShadedOption 1 $currentPanel;
    }
    else
    {
    setWireframeOnShadedOption 0 $currentPanel;
    }

  • @uncreativelamename1
    @uncreativelamename1 2 роки тому +1

    in maya bonus tools -> modeling you can select every Nth edge loop/ring. Love your videos so informative thank you!

    • @OnMars3D
      @OnMars3D  2 роки тому

      No problem. I didn't have it installed when I made this video but I recently installed it, tons of great features in bonus tools!

  • @iCamSkiEz
    @iCamSkiEz 4 роки тому +1

    Quickly becoming my favourite maya channel keep it up!

    • @OnMars3D
      @OnMars3D  4 роки тому

      Will do, appreciate the kind words!

  • @GrumpBurger
    @GrumpBurger 3 роки тому

    Excellent tips! Showed me how much i've been forgetting on Maya's powerful tools. Will definitely help my workflow. Thank you.

  • @cauanorbiato1713
    @cauanorbiato1713 2 роки тому

    Very helpful! Thanks!

    • @OnMars3D
      @OnMars3D  2 роки тому

      Glad it was helpful!

  • @abhinavtomar8493
    @abhinavtomar8493 4 роки тому

    Wow I love your tutorial

    • @OnMars3D
      @OnMars3D  4 роки тому

      Glad you enjoyed it, thank you!

  • @hitmangamesyndicate5970
    @hitmangamesyndicate5970 3 роки тому

    Great video... and awesome tips... I love my hotkeys and shortcuts... its honestly the reason that I pay for LT and didnt succumb to the Blender conundrum... (no offense to you blender guru's) now I have even more to add to the ole arsenal... Ill be watching all of your videos for the future

    • @OnMars3D
      @OnMars3D  3 роки тому

      Glad you found this helpful!

  • @JoshAntonio
    @JoshAntonio 4 роки тому

    Great video!

    • @OnMars3D
      @OnMars3D  4 роки тому +1

      Glad you enjoyed it

  • @orfeasantoulinakis9856
    @orfeasantoulinakis9856 4 роки тому +1

    Thank you for the tips! Could you possibly provide the custom scripts please?

    • @OnMars3D
      @OnMars3D  4 роки тому +3

      Sure thing, here you go! (make sure to save these as MEL scripts)
      -----------------------------------
      X-Ray Toggle Script:
      -----------------------------------
      // Toggle Xray
      //
      string $visPanel[]=`getPanel -vis`;
      int $mode;
      if (size($visPanel)>0)
      {
      for ($panel in $visPanel)
      {
      if (`match "^modelPanel" $panel`=="modelPanel")
      {
      $mode=`modelEditor -q -xray $panel`;
      if ($mode>0)
      modelEditor -e -xray 0 $panel;
      else
      modelEditor -e -xray 1 $panel;
      }
      }
      print ("
      xray="+$mode+".");
      } else
      print ("
      No model panels to modify.");
      ------------------------------------------------------------
      Wireframe on Shaded Toggle Script:
      ------------------------------------------------------------
      // Toggle Wireframe on Shaded
      //
      {
      string $currentPanel = `getPanel -underPointer`;
      $WOS = `modelEditor -q -wos $currentPanel`;
      if ($WOS == 0)
      {
      setWireframeOnShadedOption 1 $currentPanel;
      }
      else
      {
      setWireframeOnShadedOption 0 $currentPanel;
      }

  • @alloedee
    @alloedee 3 роки тому

    Thx for tips about crtl+mmb, didnt know that.

    • @OnMars3D
      @OnMars3D  3 роки тому

      No problem, happy to share!

  • @asyakowel9069
    @asyakowel9069 4 роки тому

    Nice work! You might make it interactive and put on the web.

    • @OnMars3D
      @OnMars3D  4 роки тому +1

      That's a good idea! I may add it to my Sketchfab account!

    • @asyakowel9069
      @asyakowel9069 4 роки тому +1

      @@OnMars3D You can do it with this, for example www.soft8soft.com/3dweb/67/