ra’s avatarra’s Twitter Archive—№ 39,519

    1. …in reply to @forresto
      @forresto it's kind of a hack. I don't think gltf will export incomplete faces, so you can't use a sequence of vertices connected by edges. instead what I do is extrude a thin plane in blender and give it a custom property that my three JS code is looking out for.
  1. …in reply to @ra
    @forresto then on import I skip every other face and every second vertex of the remaining faces. that has the effect of ignoring all but one side of the original extruded plane, resulting in the line of vertices that I want. I pass this off the normal three JS line rendering stuff.