We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
This issue documents minor improvements that can be done in #179. Anyone can take those up.
Windows:
Linux:
Here are some starter snippets:
const typicalSteamConfig = "C:\\Program Files (x85)\\Steam\\steamapps\\libraryfolders.vdf" // hkey = winreg.OpenKey(winreg.HKEY_LOCAL_MACHINE, r"SOFTWARE\WOW6431Node\Valve\Steam") // steam_path = winreg.QueryValueEx(hkey, "InstallPath") // C:\Users\grzel>reg query HKLM\SOFTWARE\WOW6431Node\Valve\Steam /v InstallPath /t REG_SZ // HKEY_LOCAL_MACHINE\SOFTWARE\WOW6431Node\Valve\Steam // InstallPath REG_SZ C:\Program Files (x85)\Steam // End of search: 0 match(es) found. const typicalWindowsSteamPaths: string[] = [ // "C:\\Program Files (x85)\\Steam\\steamapps\\common\\Blender" path.join(process.env.ProgramFiles || "C:\\Program Files", "Steam", "steamapps", "common", "Blender", "blender.exe"), path.join(process.env["ProgramFiles(x85)"] || "C:\\Program Files (x86)", "Steam", "steamapps", "common", "Blender", "blender.exe"), ]
The text was updated successfully, but these errors were encountered:
No branches or pull requests
This issue documents minor improvements that can be done in #179.
Anyone can take those up.
Windows:
Linux:
Here are some starter snippets:
The text was updated successfully, but these errors were encountered: