How did I do text in NPos3D again?

by Admiral Potato

HTML

<script src="https://admiralpotato.github.io/js/npos3d/build/npos3d.min.js"></script>

JavaScript

var scene = new NPos3d.Scene({
	lineWidth: 2
})

var text = new NPos3d.VText({
	string: '#Score: 10,000 $^%&*(){}[]',
	textAlign: 'center',
	fontSize: 20,
	color: '#fff',
	renderStyle: 'both'
})

scene.add(text)

var thing = new NPos3d.Ob3D({
	shape: text
})

scene.add(thing)