mirror of
https://github.com/overte-org/overte.git
synced 2025-04-23 01:13:32 +02:00
Merge pull request #4119 from huffman/fix-overlay-copy-ctor
Add missing paramaters to Base3DOverlay copy ctor
This commit is contained in:
commit
5663b734a3
1 changed files with 3 additions and 1 deletions
|
@ -41,7 +41,9 @@ Base3DOverlay::Base3DOverlay(const Base3DOverlay* base3DOverlay) :
|
|||
_rotation(base3DOverlay->_rotation),
|
||||
_isSolid(base3DOverlay->_isSolid),
|
||||
_isDashedLine(base3DOverlay->_isDashedLine),
|
||||
_ignoreRayIntersection(base3DOverlay->_ignoreRayIntersection)
|
||||
_ignoreRayIntersection(base3DOverlay->_ignoreRayIntersection),
|
||||
_drawInFront(base3DOverlay->_drawInFront),
|
||||
_drawOnHUD(base3DOverlay->_drawOnHUD)
|
||||
{
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue