Blender script, export 3D Model as FP10 vector array

This script enables you to export Blender objects to ActionScript 3.0 Vectors.

Installation: unpack archive to
Windows: /Blender Foundation/Blender/.blender/scripts/
(Blender .2.46: C:\Documents and Settings\\Application Data\Blender Foundation\Blender\.blender\scripts)
Mac: /Applications/blender/blender.app/Contents/MacOS/.blender/scripts/

Download

Example of generated vectors:

public static var points:Vector.<Number> = Vector.<Number>([
	1.000000,0.000000,1.000000,
	1.000000,0.000000,-1.000000,
	-1.000000,0.000000,-1.000000,
	-1.000000,0.000000,1.000000
]);

public static var faces:Vector.<int> = Vector.<int>([
	0,3,2,
	0,2,1
]);

public static var faces_uvs:Vector.<Number> = Vector.<Number>([
	0.000000,0.000000,	1.000000,0.000000,	1.000000,1.000000,
	0.000000,0.000000,	1.000000,0.000000,	1.000000,1.000000
]);

Script bazed on “Dennis Ippel” exporter

0 Responses to “Blender script, export 3D Model as FP10 vector array”


  • No Comments

Leave a Reply