Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.
class Game extends backbone.View
    constructor: ->
        @scene = new THREE.Scene()
        @camera = new THREE.PerspectiveCamera 75, window.innerWidth/window.innerHeight, 1, 100000

        @camera.position.z = 300
        @scene.add @camera
        @imgText = imgText = THREE.ImageUtils.loadTexture "/images/health.png"
        imgText.wrapT = imgText.wrapS = THREE.RepeatWrapping
        sphereMat = new THREE.MeshBasicMaterial {map: imgText}
        @mesh = new THREE.Mesh new THREE.CylinderGeometry(100, 100, 200, 64, 1, true), sphereMat
        @mesh.doubleSided = @mesh.flipSided = true
        @mesh.frustumCulled = false
        @scene.add @mesh
        pl = new THREE.PointLight 0xFFFFFF
        [pl.position.x, pl.position.y, pl.position.z] = [10, 50, 130]
        @scene.add pl

        @el = $ "body"

    render: ->
        @renderer = new THREE.WebGLRenderer()
        @renderer.setSize window.innerWidth, window.innerHeight
        $(@el).append @renderer.domElement

        $(@el).mousewheel (event, delta) =>
            @camera.position.z += delta

    step: (delta) ->
        @mesh.rotation.y += 1*
        @renderer?.render @scene, @camera

Getting some weird issues with the texture disappearing/reappearing. Its like the entire object disappears for a bit then comes back out of no where. I've attached a youtube video.

http://www.youtube.com/watch?v=aHh25O6I5Vs

share|improve this question
Its like it can only display the texture once per rotation or something. – Pykedout Aug 12 '12 at 12:52
Definitely appears to be occuling or something. If I go inside of the cylinder it doesn't have this issue. – Pykedout Aug 13 '12 at 1:09
When I turn the material's depthTest property to false it'll show the texture completely. when its making the right turn (even through the other side of the texture). – Pykedout Aug 13 '12 at 21:12

1 Answer

Most likely, you just need to set mesh.flipSided = false and mesh.doubleSided = true.

share|improve this answer
I've had it like that in the beginning still the same results. – Pykedout Aug 12 '12 at 23:31

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.