21 lines
421 B
Lua
21 lines
421 B
Lua
|
|
-- Intestazioni
|
|
require('EgtBase')
|
|
_ENV = EgtProtectGlobal()
|
|
EgtEnableDebug( true)
|
|
|
|
EgtAddToPackagePath(EgtGetSourceDir() .. 'LuaLibs\\?.lua')
|
|
require( 'EgtCompo')
|
|
|
|
|
|
-- Parametri : dichiarazione e valori standard
|
|
--.T (tipo) : 0=null, 1=bool, 2=int, 3=len, 4=num, 5=string
|
|
local CMP = {}
|
|
|
|
local Id = EgtGetFirstSelectedObj()
|
|
--local IdCopy = EgtCopy( Id, EgtGetFirstLayer() )
|
|
|
|
|
|
EgtOffsetCurve( Id, 200 )
|
|
EgtDraw()
|