Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

allow_import - It is a boolean value as a 1 or 0 that allows to add the 'Import/export materials' item in the contextual menu for a specific 'blockdata' field. It is deactivated by default. For more information about this attribute, see the section Import export materials


...

Example

Code Block
titleBlockdata example
<container n="Intervals" pn="Time intervals" un="Intervals" icon="time2" open_window="0">
	<blockdata n="Interval" pn="Interval" name="Initial" sequence="1" icon="time3" editable_name="unique" sequence_type="non_void_disabled" help="Interval">
		<value n="IniTime" pn="Start time" v="0.0" state="disabled" help="When do the interval starts?"/>
		<value n="EndTime" pn="End time" v="0.0" state="disabled" help="When do the interval ends?"/>
	</blockdata>
	<blockdata n="Interval" pn="Interval" name="Total" sequence="1" icon="time3" editable_name="unique" sequence_type="non_void_disabled" help="Interval">
		<value n="IniTime" pn="Start time" v="0.0" state="disabled" help="When do the interval starts?"/>
		<value n="EndTime" pn="End time" v="End" state="disabled" help="When do the interval ends?"/>
	</blockdata>
	<blockdata n="Interval" pn="Interval" name="Custom1" sequence="1" icon="time3" editable_name="unique" sequence_type="non_void_disabled" help="Interval">
		<value n="IniTime" pn="Start time" v="0.0" help="When do the interval starts?"/>
		<value n="EndTime" pn="End time" v="0.5" help="When do the interval ends?"/>
	</blockdata>
</container>

Image Added