MCPcopy Create free account
hub / github.com/TorqueGameEngines/Torque3D / setHidden

Method setHidden

Engine/source/T3D/shapeBase.cpp:3456–3467  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

3454//--------------------------------------------------------------------------
3455
3456void ShapeBase::setHidden( bool hidden )
3457{
3458 if( hidden != isHidden() )
3459 {
3460 Parent::setHidden( hidden );
3461
3462 if( hidden )
3463 setProcessTick( false );
3464 else
3465 setProcessTick( true );
3466 }
3467}
3468
3469//--------------------------------------------------------------------------
3470

Callers 12

MainWindowMethod · 0.45
shapeBase.cppFile · 0.45
updateRectsMethod · 0.45
updateRectsMethod · 0.45
updateRectsMethod · 0.45
showPopupMethod · 0.45
hidePopupMethod · 0.45
hideSelectionMethod · 0.45
toggleHideSelectionMethod · 0.45
setVisibleMethod · 0.45
hideObjectMethod · 0.45
onEditorEnableMethod · 0.45

Calls 2

isHiddenFunction · 0.85
setHiddenFunction · 0.85

Tested by

no test coverage detected