Files
Dario Sassi b83e8aa9a2 DataBeamWall :
- primo commit.
2020-04-09 08:04:18 +00:00

18 lines
370 B
Lua

-- ClearAll.lua by Egaltech s.r.l. 2017/11/16
-- Gestione visualizzazione di tutte le Travi
-- Intestazioni
require( 'EgtBase')
_ENV = EgtProtectGlobal()
EgtEnableDebug( false)
local nId = EgtGetFirstPart()
while nId do
EgtSetMode( nId, GDB_MD.STD)
-- EgtSetStatus( nId, GDB_ST.ON)
nId = EgtGetNextPart( nId)
end
EgtZoom( SCE_ZM.ALL)
-- end