Jump to content

CYOS bugs


NasimiAsl
 Share

Recommended Posts

hi 

1. cant save Cyos 

2. this shader result is not corrct in Cyos but have correct result in PG

*notic this line in vertex shader :  vNormal = normal; 

if you remove that shader render correctly

http://www.babylonjs-playground.com/#Y0RQ2F#3

precision highp float;

// Attributes
attribute vec3 position;
attribute vec3 normal;
attribute vec2 uv;

// Uniforms
uniform mat4 worldViewProjection;

// Varying
varying vec2 vUV;
varying vec4 vPosition;
varying vec3 vNormal;

void main(void) {
      vec4 p = vec4( position, 1. );

    vPosition = p;
    vNormal = normal; 
    vUV = uv;

    gl_Position = worldViewProjection * p;
}

 

precision highp float;

varying vec2 vUV;

varying vec4 vPosition;
varying vec3 vNormal;

uniform sampler2D textureSampler;

void main(void) {
    gl_FragColor = texture2D(textureSampler, vUV);
}

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Loading...
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...