Hello,
recently I thought it would be time to get used of js modules.
So I grabbed some old three- code, which was written with three.js labeled “1f968fe” which might be aroud r74 ( !? ), downloaded r162 and tried to modify the old code to a module- approach.
The old code creates a text- geometry and iterates the vertices to colorize them each.
The access to them is given by:
var vertices = geometry.vertices;
When I use this with r162 or want to let show the vertices like
console.log( geometry.vertices );
I’m being said that these were undefined. Obviously the seem to be somewhere because I can see the wanted letters on the screen.
Using the same console in r74 ( ? ) I get nice arrays printed with the wanted vertices.
Where may I find them in r162 ?
Many thanks in advance.