overte-JulianGro/tools
2022-06-23 23:36:53 +02:00
..
010-templates Add 010-templates/README.md 2018-05-07 11:52:29 -07:00
ac-client Replace uses of endl on Qt classes with Qt::endl 2021-07-03 19:08:03 +02:00
animedit
atp-client Replace uses of endl on Qt classes with Qt::endl 2021-07-03 19:08:03 +02:00
bake-tools
ci-scripts Add Docker server Github Actions builds 2022-06-23 23:36:53 +02:00
dissectors
doxygen Updated some URLs, rebranded documentation and changed default metaverse server address 2022-02-09 23:57:24 +01:00
gpu-frame-player Merge pull request #1339 from odysseus654/pr/make_shared 2021-12-09 17:14:04 -05:00
ice-client Merge branch 'master' into dev/webapp-master-update 2021-10-03 12:51:47 +13:00
jsdoc Update jsdoc 2022-02-19 17:59:44 +01:00
ktx-tool Unnecessary copy warning 2022-06-15 00:02:54 +02:00
nitpick
oven
qt-builder
samples Replacing glutSolidSphere by a cached Geometry 2014-10-03 16:55:58 -07:00
scripts Switch to GitPython 2019-01-09 18:27:34 -08:00
skeleton-dump
udt-test Rename "HifiSockAddr" to "SockAddr" 2021-07-06 13:23:57 +12:00
unity-avatar-exporter update package 2019-03-28 11:28:14 -07:00
vhacd-util
atp-extract.py Add tools/atp-extract.py 2016-11-04 11:23:10 -07:00
avatar-json-to-dot.js
CMakeLists.txt
dimensions.mel Fixes for scaling controller display 2017-09-05 15:03:41 -07:00
gen_stars.py
normalizeFrame.py
objtohio.php
README.md
refresh-tags.sh
sendvoxels.php first cut at exists bits 2013-05-20 12:56:59 -07:00
shadergen.py
srgb_gen.py Fix srgb_gen lookup table generation 2016-08-08 15:44:08 -07:00

tools

Various command line tools for interacting with the Voxel Server and Interface.

objtohio.php :

USAGE: 
	php objtohio.php -i 'inputFileName' -o 'outputFileName' -m [blocks|wireframe|surface] -s [voxel size]
	
DESCRIPTION:	
	Converts a Wavefront OBJ file into a voxel binary file suitable for loading locally into the client or
	loading on the voxel server or sending to the voxel server using sendvoxels.php
	
NOTE:  
	Depending on the size of the model, it might take a lot of memory, so you will likely need to include
    the -d memory_limit=4096M option
       
EXAMPLE:

	php -d memory_limit=4096M objtohio.php -i "Samples/little girl head-obj.obj" -o girl-test.hio -s 0.006

sendvoxels.php :

USAGE:	
	sendvoxels.php -i 'inputFileName' -s [serverip] -p [port] -c [I|R]

DESCRIPTION:	
	Sends the contents of a voxel binary file to a voxel server. Can either Insert or Remove voxels. Command defaults
	to "I" insert.

EXAMPLES:

	php sendvoxels.php -s 192.168.1.116 -i 'girl-test.hio' -c I
	php sendvoxels.php -s 192.168.1.116 -i 'girl-test.hio' -c R
	php sendvoxels.php -s 192.168.1.116 -i 'girl-test.hio'