DataDoors 3.1a1 :

- aggiunta gestione ProbeId anche per Probe su Pivot del lato cerniere (intermediatepivot).
This commit is contained in:
Dario Sassi
2026-01-07 18:17:12 +01:00
parent 0c7849263c
commit b472c6b88e
2 changed files with 7 additions and 5 deletions
+4 -2
View File
@@ -1,4 +1,4 @@
-- Main.lua by EgalWare s.r.l. 2025.12.16
-- Main.lua by EgalWare s.r.l. 2026.01.07
-- Main creazione porte da descrizione DDF
-- 2016.09.07 V1.001 FM Modificata gestione flush bolt
-- 2016.09.14 V1.002 FM Aggiunta gestione log file
@@ -114,6 +114,7 @@
-- 2025.05.06 v2.7e1 DS Correzione funzione SubAndDeleteTempSurf.
-- 2025.10.29 v2.7j3 DS Correzione a SubAndDeleteTempSurf (aggiunto controllo esistenza regioni).
-- 2025.12.16 v2.7l1 DS Aggiunta gestione TrimLTHB per distanze dai bordi del trim decorazioni.
-- 2026.01.07 v3.1a1 DS Gestione indice probe anche per Pivot su Hinge (intermediatepivot).
-- Intestazioni
require( 'EgtBase')
@@ -1603,7 +1604,8 @@ local function InsertProbeGeom( nIdGeom, ptPosGeom, ptFromExt, nTypeHw, nNumSide
local nIdEnt = EgtGetFirstInGroup( nIdGeom) -- ottengo prima entità
while nIdEnt do
local sNameEnt = EgtGetName( nIdEnt) or ''
if sNameEnt and string.find( sNameEnt, 'Hinge_Probe') or string.find( sNameEnt, 'Shuttle_Probe') then
if sNameEnt and string.find( sNameEnt, 'Hinge_Probe') or string.find( sNameEnt, 'Shuttle_Probe') or
( string.find( sNameEnt, 'Pivot_Probe') and nNumSide == 1) then
bFoundShuttleProbe = true
break
end
+2 -2
View File
@@ -1,6 +1,6 @@
-- Version.lua by EgalWare s.r.l. 2025/12/16
-- Version.lua by EgalWare s.r.l. 2026/01/07
-- Gestione della versione di Doors
NAME = 'Doors'
VERSION = '2.7l1'
VERSION = '3.1a1'
MIN_EXE = '2.6k4'