SetBordersColor4 sets the color and opacity of this panel borders
(color *math32.Color4)
| 403 | |
| 404 | // SetBordersColor4 sets the color and opacity of this panel borders |
| 405 | func (p *Panel) SetBordersColor4(color *math32.Color4) { |
| 406 | |
| 407 | p.udata.bordersColor = *color |
| 408 | p.SetChanged(true) |
| 409 | } |
| 410 | |
| 411 | // BordersColor4 returns current border color |
| 412 | func (p *Panel) BordersColor4() math32.Color4 { |
no test coverage detected