Search results

  1. L

    Next-Gen Source 2 Engine Is In Development

    No joke, if you do a search for "borealis" in windows explorer in "C:\Program Files (x86)\Steam\steamapps\common\SourceFilmmaker\game\hl2", you will get a good amount of stuff. Lots of VTF's.
  2. L

    Next-Gen Source 2 Engine Is In Development

    "C:\Program Files (x86)\Steam\steamapps\common\SourceFilmmaker\game\hl2\materials\environment maps\borealis_003.vtf"
  3. L

    Next-Gen Source 2 Engine Is In Development

    Uhhh, this isn't about Source 2 or anything, but I did find a VTF file named "borealis.vtf". Now why would that be in SFM........
  4. L

    Next-Gen Source 2 Engine Is In Development

    That whole thing is code I found in a file called "constants.py". Here's another interesting one I think: if engine == 'Source': # Example: C:\Dev\tools\python\generic pyPath = Path( r'{0}\python\generic'.format( toolsDir, version, arch ) ).unresolved() else: #...
  5. L

    Next-Gen Source 2 Engine Is In Development

    class ENGINE( object ): ''' Known engine names ''' SOURCE = 'Source' SOURCE2 = 'Source 2' SFM = 'SFM' HYBRID = 'Hybrid' ALL = 'All' SOURCE_FAMILY = ( SOURCE, SFM ) SOURCE2_FAMILY = ( SOURCE2, HYBRID ) ALL_ENGINES = ( SOURCE...
Back
Top