mirror of
https://github.com/Sneed-Group/Poodletooth-iLand
synced 2024-12-25 12:42:41 -06:00
13 lines
419 B
Python
13 lines
419 B
Python
from panda3d.core import Point3
|
|
|
|
from toontown.toontowngui.Clickable import Clickable
|
|
|
|
|
|
class Clickable2d(Clickable):
|
|
def setClickRegionFrame(self, left, right, bottom, top):
|
|
mat = self.contents.getNetTransform().getMat()
|
|
|
|
left, _, top = mat.xformPoint(Point3(left, 0, top))
|
|
right, _, bottom = mat.xformPoint(Point3(right, 0, bottom))
|
|
|
|
self.region.setFrame(left, right, bottom, top)
|