v0.2.0.0
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 fromMWidget
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