Skip to content

v0.2.0.0

Compare
Choose a tag to compare
@MatusGuy MatusGuy released this 03 Jun 14:53
· 21 commits to master since this release

Mt BETA: 0.2.0.0

Fixed a few bugs with the window manager and added a new object!

There's a chance you might've downloaded a broken version of the place file, I've fixed that, please try downloading again

Changes:

  • fixed up the window manager a little
    • windows will no longer slide away when resizing above the size limits (this affected the MWidget object)
    • other bugfixes
  • added the MProgressBar object
    inherits from MWidget
    shows a progress bar that can also be used as a health bar
    how to use:
    local MScreen = require(game.ReplicatedStorage.Mt.MtCore.MScreen)
    local MProgressBar = require(game.ReplicatedStorage.Mt.MtWidgets.MProgressBar)
    
    local screen = MScreen:Init()
    
    local progressBar = MProgressBar:Init(screen)
    progressBar:GoTo(Vector2.new(150,150))
    progressBar:Resize(Vector2.new(300,50))
    progressBar:SetProgress(50)

In progress:

  • create mt widgets out of png
  • spinbox
  • slider
  • adding widgets to windows