hiitiger / goverlay

DirectX hook and game overlay solution for Electron, Qt and CEF, just like discord/steam game overlay,inject any app to overlay in your game
Other
800 stars 111 forks source link

No source files to change .dll #93

Closed beermonsterdota closed 1 year ago

beermonsterdota commented 1 year ago

Unfortunately, you've removed source files to compile new n_overlay.x64.dll. I need to use window with name "OverlayTip" to get simple overlay that will be always visible ontop of the game, but it have -10px offset on top and left, so it's impossible to screen of the game.

Pretty much, all i need is this code to be compiled with latest sources for game-overlay

{
    if (overlayTipSprite_)
    {
        overlayTipSprite_->rect.x = targetWidth_ - overlayTipSprite_->rect.width;
        overlayTipSprite_->rect.y = targetHeight_ - overlayTipSprite_->rect.height;
        _drawWindowSprite(overlayTipSprite_);
    }
}

Also it would be great if you remove hotkey for F1 from precompiled .dlls because you can't disable that F1 acts pretty much like ctrl+F2 and triggers overlay.hotkey.toggleInputIntercept

If it's possible and you will be able to provide me just compiled .dlls, it also would be fantastic!

hiitiger commented 1 year ago

@beermonsterdota

I'm plan to do refactor of source.

please checkout backup code here, https://github.com/hiitiger/game-overlay

Tetragromaton commented 1 year ago

up