This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import winreg as wr | |
import os | |
''' | |
Sets settings in hlmv using the registry to automate taking uniform screenshots for item thumbnails. | |
Tested with python 3.2 and 3.5 | |
USE AT YOUR OWN RISK. This script should be pretty safe, but it is modifying the registry, so be careful. | |
CONFIGURATION: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// base config by DubThink | |
// parts assembled from a variety of places | |
// I use valve autoheal (in advanced options) | |
bind mouse2 +attack2 | |
bind mouse3 +attack3 | |
bind r +reload | |
bind q +lastinv | |
// p is my killbind. Nice and hard to hit accidentally |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using Microsoft.Xna.Framework; | |
using Microsoft.Xna.Framework.Graphics; | |
using Monogame.Imgui.Renderer; | |
using ImGuiNET; | |
public class TestImguiCrash : Game | |
{ | |
private GraphicsDeviceManager _graphics; | |
private ImGuiRenderer _imGUIRenderer; | |
public TestImguiCrash() |