overte-Armored-Dragon/tools
Anthony J. Thibault ddf1543d68 Update mac qt build
* Reformat whitespace in README.md
* hifi_vckpg.py: Remove macos var/temp hack for vcpkg
* hifi_vckpg.py: Add ability to override HIFI_QT_INSTALL_ROOT dir with environment variable.
* hifi_vckpg.py: Update macos url for pre-built qt 5.12.3 on S3.
* cmake/ports/bullet3/portfile.cmake: add comment to force change in vcpkg hash.
* tools/qt-builder/README.md: updated formatting and added details about how to generate symbols for macos and pc
* tools/qt-builder: added prepare python scripts for symbols
* cmake/macros/SetupQt.cmake: Remove hardcoded var/temp qt cmake path
2019-05-29 17:11:24 -07:00
..
010-templates
ac-client Extend ICE logging + make it more searchable 2019-05-08 18:38:00 -07:00
atp-client Extend ICE logging + make it more searchable 2019-05-08 18:38:00 -07:00
bake-tools
ci-scripts Moved script. 2019-05-01 10:47:40 -07:00
dissectors Update avatar dissector to account for has flag bit reorder 2019-04-22 15:37:53 -07:00
frame-optimizer
gpu-frame-player
ice-client
jsdoc Merge branch 'master' into M21989 2019-04-11 10:37:34 +12:00
ktx-tool
nitpick Reverted erroneous commit. 2019-05-04 18:45:27 -07:00
oven fix baking 2019-04-25 15:56:56 -07:00
qt-builder Update mac qt build 2019-05-29 17:11:24 -07:00
samples
scripts
skeleton-dump
udt-test
unity-avatar-exporter update package 2019-03-28 11:28:14 -07:00
vhacd-util Install both oven and vhacd in both client and client+server builds. 2019-04-09 12:30:34 -07:00
atp-extract.py
avatar-json-to-dot.js
CMakeLists.txt testing 2019-04-23 10:39:52 -07:00
dimensions.mel
gen_stars.py
normalizeFrame.py Fix loading relative files 2019-03-19 09:32:44 -07:00
objtohio.php
README.md
refresh-tags.sh
sendvoxels.php
shadergen.py Support Android app-specific extensions in shaders 2019-02-15 14:16:58 -08:00
srgb_gen.py

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'