Search found 1 match

by Slover
Sun Jan 04, 2015 3:59 am
Forum: Libraries and Tools
Topic: Löve Frames - A GUI Library
Replies: 406
Views: 352652

Re: Löve Frames - A GUI Library

Is it possible to hide child content outside of a parents bounds? So something like: local frame = loveframes.Create("frame") frame:SetSize(100, 100) local panel = loveframes.Create("panel", frame) panel:SetSize(50, 50) panel:SetPos(25, 75) Wouldn't have a panel sticking out the ...