It removes the hud.
[editline]7th March 2016[/editline]
[QUOTE=Cornfinder;49886557]Try:
[code]
-- Enums
STATUS_INVISIBLE = 0
STATUS_FADINGIN = 1
STATUS_FADINGOUT = 2
ALIGN_LEFT = 2
ALIGN_CENTER = 1
ALIGN_RIGHT = 0
ALIGN_TOP = 2
ALIGN_BOTTOM = 0
[/code][/QUOTE]
It removes the hud.
[QUOTE=Mini_Tiger;49886611]It removes the hud.
[editline]7th March 2016[/editline]
It removes the hud.[/QUOTE]
Oh sorry, those are just enum declarations. Replace
[Code]
WIDGET_ALIGN_X = ALIGN_BOTTOM
WIDGET_ALIGN_Y = ALIGN_RIGHT
[/Code]
With
[Code]
WIDGET_ALIGN_X = ALIGN_TOP
WIDGET_ALIGN_Y = ALIGN_LEFT
[/Code]
Make sure to undo my old suggestion
[QUOTE=Cornfinder;49887788]Oh sorry, those are just enum declarations. Replace
[Code]
WIDGET_ALIGN_X = ALIGN_BOTTOM
WIDGET_ALIGN_Y = ALIGN_RIGHT
[/Code]
With
[Code]
WIDGET_ALIGN_X = ALIGN_TOP
WIDGET_ALIGN_Y = ALIGN_LEFT
[/Code]
Make sure to undo my old suggestion[/QUOTE]
Still removes the hud.
[editline]8th March 2016[/editline]
Changing both things will keep the hud in the right bottom corner but the half of it is gone outside the screen.
Sorry, you need to Log In to post a reply to this thread.