Carl Husberg
Carl Husberg
Good day, A world map module would be swell, have a look at the following for some ideas: ``` WorldMapFrame:SetScale(0.8); WorldMapFrame.BlackoutFrame.Blackout:SetAlpha(0); WorldMapFrame.BlackoutFrame:EnableMouse(false); WorldMapFrame.ScrollContainer.GetCursorPosition = function(f) local x,y = MapCanvasScrollControllerMixin.GetCursorPosition(f); local...
Good day, Adding this: ``` Method ToBatches:TLinkedList(size:Int) Local out:TLinkedList = New TLinkedList() If Not Count() Return out EndIf Local cur:TLinkedList = New TLinkedList() For Local elem:T = EachIn Self cur.AddLast(elem)...
Good day, Seems that using scope as a global variable name in a type causes some errors: ``` Framework BRL.Blitz Type TFoo Global scope:String = "test" EndType ``` Cheers!