GithubHelp home page GithubHelp logo

nicgalehouse / aodamagemeter Goto Github PK

View Code? Open in Web Editor NEW
15.0 15.0 8.0 754 KB

Real-time graphical damage meter for the sci-fi MMORPG Anarchy Online.

License: Other

C# 100.00%
anarchy-online damage damage-meter meter

aodamagemeter's People

Contributors

davghouse avatar nicgalehouse avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar

aodamagemeter's Issues

FormatForScript and Environment.NewLine

AODamageMeter.UI -> ViewModels -> RowBase.cs -> FormatForScript()

Environment.NewLine did not catch both \r and \n for me, which left carriage returns in the aodm output and broke the script. The following did the trick:

    private string FormatForScript(string text)
        => text.Replace(Environment.NewLine, "<br>")

    private string FormatForScript(string text)
        => text.Replace("\n", "<br>")
        .Replace("\r", "")

Won't allow window to be captured using OBS-Studio

Adding AODamageMeter to an OBS scene as either Game Capture (3d) or Window Capture produces a black box instead of showing the damage meter.

I'm not sure if it's the way the window is drawn / rendered or what. Would it be possible to add any compatibility options, layers or hooks to AODamageMeter for interaction with video recording software?

-- This should be labeled as suggestion and not a bug --

Damage meter scrolls down on its own

The damage meter is scrolling down one row every time a new row is added. It should not scroll on its own, it should stay at whatever position the user has scrolled it to. For example, if it's scrolled to the top, it should stay at the top, and if it's scrolled so that the fifth row is at the top, the fifth row should stay at the top as new rows are added.

Appears to be the issue described here: dotnet/wpf#7199

Thanks to @ohyouplaylikethat5197 on YouTube for reporting this.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.