mirror of
https://github.com/overte-org/overte.git
synced 2025-08-07 14:30:35 +02:00
Add missing paramaters to Base3DOverlay copy ctor
This commit is contained in:
parent
a2aad615a0
commit
cfb996db0c
1 changed files with 3 additions and 1 deletions
|
@ -41,7 +41,9 @@ Base3DOverlay::Base3DOverlay(const Base3DOverlay* base3DOverlay) :
|
||||||
_rotation(base3DOverlay->_rotation),
|
_rotation(base3DOverlay->_rotation),
|
||||||
_isSolid(base3DOverlay->_isSolid),
|
_isSolid(base3DOverlay->_isSolid),
|
||||||
_isDashedLine(base3DOverlay->_isDashedLine),
|
_isDashedLine(base3DOverlay->_isDashedLine),
|
||||||
_ignoreRayIntersection(base3DOverlay->_ignoreRayIntersection)
|
_ignoreRayIntersection(base3DOverlay->_ignoreRayIntersection),
|
||||||
|
_drawInFront(base3DOverlay->_drawInFront),
|
||||||
|
_drawOnHUD(base3DOverlay->_drawOnHUD)
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue