Skip to content
View alteveer's full-sized avatar
  • Ghost Fleet
  • New York, NY

Block or report alteveer

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned Loading

  1. Terrain Terrain Public

    Unreal 4 "Marching Cubes" Terrain Plugin

    C 1 2

  2. cinematics-pipeline-tools cinematics-pipeline-tools Public

    Python 1

  3. Generates .sbs files from your Megas... Generates .sbs files from your Megascans surfaces library for use in painter/designer. Fill in the paths at the top (and make sure they are all on the same drive letter if you are on Windows). Currently only supports jpg.
    1
    PATH_TO_SUBSTANCE_AUTOMATION_TOOLKIT = r""
    2
    PATH_TO_MEGASCANS_DIRECTORY = r""
    3
    PATH_TO_SBS_LIBRARY = r""
    4
    
                  
    5
    import os, sys
  4. FBX Export with supressed dialog FBX Export with supressed dialog
    1
    # Save this button to shelf as "Python"
    2
    
                  
    3
    import os
    4
    import maya.cmds as mc
    5
    import maya.mel as mel
  5. Collecting the output of p4 as a pyt... Collecting the output of p4 as a python object
    1
    import marshal, sys, subprocess
    2
    
                  
    3
    # replace ??? with your p4 command, keep -G to get marshal'able object
    4
    cmd = r'p4 -G ???'
    5
    changelists = []
  6. FBX Import with supressed dialog FBX Import with supressed dialog
    1
    # Save this button to shelf as "Python"
    2
    
                  
    3
    import maya.cmds as mc
    4
    import maya.mel as mel
    5