SetBounded sets this panel bounded state
(bounded bool)
| 532 | |
| 533 | // SetBounded sets this panel bounded state |
| 534 | func (p *Panel) SetBounded(bounded bool) { |
| 535 | |
| 536 | p.bounded = bounded |
| 537 | p.SetChanged(true) |
| 538 | } |
| 539 | |
| 540 | // UpdateMatrixWorld overrides the standard core.Node version which is called by |
| 541 | // the Engine before rendering the frame. |
no test coverage detected