Author Topic: Bug Report  (Read 1247 times)

fangguanya

  • Newbie
  • *
  • Thank You
  • -Given: 0
  • -Receive: 1
  • Posts: 3
    • View Profile
Bug Report
« on: August 25, 2014, 11:01:39 PM »
 :)
I found a bug in UIPanel.cs at line 604
if (anchorOffset && mCam == null || mCam.transform.parent != cachedTransform)

I think it should be:
if (anchorOffset && (mCam == null || mCam.transform.parent != cachedTransform))

ArenMook

  • Administrator
  • Hero Member
  • *****
  • Thank You
  • -Given: 337
  • -Receive: 1171
  • Posts: 22,128
  • Toronto, Canada
    • View Profile
Re: Bug Report
« Reply #1 on: August 26, 2014, 03:29:36 AM »
Thanks!