--Open the INI file for editing in the MAXScript Editor
edit (objimp.getIniName())
--Alternatively, use INI file access to read and write:
theINI =objimp.getIniName()
getIniSettingtheINI--get INI file categories
-->#("General", "Objects", "Geometry", "Units/Scale", "Material")
--get the keys of the General category:
getIniSettingtheINI"Geometry"
-->#("FlipZyAxis", "CenterPivots", "Shapes", "TextureCoords", "SmoothingGroups", "NormalsType", "SmoothAngle", "FlipNormals")
--get thevalueof theGeometry>Shapeskey:
getIniSettingtheINI"Geometry""Shapes"
-->"0"
--TurnShapes on:
setIniSettingtheINI"Geometry""Shapes" "1"
-->true
|