Jump to content

Samples for CustomMaterial


NasimiAsl
 Share

Recommended Posts

hi i start write some documentation here for custom material ( its realy easy for me to make it here but i can move it in documentation after that complete )

definition : Custom Material inherited from stable version of Standard material (a carbon Copy of BABYLON.StandarMaterial)

when we need CustomMaterial ? : any time you wanna make any custom option but you can't manage that in standard material . 

vertex shader definitions : 

  1. position(readonly)  or positionUpdated(vec3) : local position per vertex
  2. normal(readonly) or NormalUpdated(vec3) : local normal

fragment shader definitions :

  1. vPositionW( readonly) : world position per pixel
  2. vNormalW(read only) 
  3. vDiffuseUV(vec2) : (readonly) : defined uv attribute append when you have DiffuseTexture
  4. diffuseColor(vec3) you can manage that with Fragment_Custom_Diffuse : for control Diffuse color   **** that mixed with diffuseTexture if you add any texture
  5. alpha(float) you can manage that from Fragment_Custom_alpha : for control transparency
  6. color(vec4) last result after attached all effect (light fog shadow ... ) you can manage that in Fragment_before_FragColor 

 

methods : 

Start  

.material = new BABYLON.CustomMaterial("name",scene);

Demo :  You can define customMaterial exactly like StandardMaterial and you have all property and methods in custom material too

 AddUniform 

material.AddUniform('test1','vec3');
 
  1. simple (float,vec2, vec3,vec4,...)  demo 
  2. sampler without UV  with Define UV
  3. array array3 , float

Fragment_Begin

material.Fragment_Begin( string)

#include<__decl__defaultFragment> 
[Fragment_Begin]
#extension GL_OES_standard_derivatives : enable

for define any new extension or include any shader (not find any requirement for make sample)

Fragment_Definitions

material.Fragment_Definitions( string)

 
#[Fragment_Definitions] 
 
void main(void) { 

this define before main  you can define any varying or global function before main

demo : make varying for simple noise used vertex data to add normal

demo : change vertex use definition function

Fragment_MainBegin

void main(void) { 
 
vNormalW = vNormalW_helper; 
#[Fragment_MainBegin] 

demo : correct normal for back face

Fragment_Custom_Diffuse

you most find your result red and green and blue (witch any way you like ) and set it in diffuseColor or result

*** result (vec3) in this method replaced (one time) by diffuseColor 

set texture  setTexture use diffuseColor

Fragment_Custom_Alpha

you most find your alpha and set it to alpha variable or in result

*** result (vec3) in this method replaced (one time) byalpha 

demo manage transparency

Fragment_Before_FragColor

before the last result you have chance to manage your result your final color available in color variable and you most be set it color after your changes

*** result (vec4) in this method replaced (one time) by color 

demo result with and without light effect

Vertex_Begin

for define any new extension or include any shader (not find any requirement for make sample)

Vertex_Definitions

this define before main  you can define any varying or global function before main

Vertex_MainBegin

same as Fragment_Main

Vertex_Before_PositionUpdated


localPosition = positionUpdated; 
#[Vertex_Before_PositionUpdated] 
 
gl_Position=viewProjection*finalWorld*vec4(positionUpdated,1.0); 

you most change positionUpdated in here for change last vertex result

Vertex_Before_NormalUpdated

#ifdef NORMAL 
 
#[Vertex_Before_NormalUpdated] 
 
localNormal = normalUpdated; 
vNormalW_helper=normalize(vec3(finalWorld*vec4(normalUpdated,0.0))); 

you most change normalUpdated in here for change last vertex normal result

related samples

Update Uniform demo

 

Link to comment
Share on other sites

  • 1 month later...

https://www.babylonjs-playground.com/#UXCB15#29

https://www.babylonjs-playground.com/#UXCB15#30

 

if you wanna use tile  you see edge problem

https://www.babylonjs-playground.com/#UXCB15#32

for fix that you most make tiled pattern texture 

erferferfe.jpg

photoshop action for do that : Tiling for AtlasMap.atn  after setup short key "ctrl+shift +f9"

for sample : asdasdasd.jpg.e1d1d45602ce3c9c8fad29a19c542d1c.jpg  converted to adasdas-dadasdasd.jpg.e3fe72f69e6b6ce04dcc576188a3788d.jpg

 

https://www.babylonjs-playground.com/#UXCB15#31

ping @ozRocker

main atlas texture : tiled.thumb.jpg.8da387a22335088611558756c5189e33.jpg

 

Link to comment
Share on other sites

35 minutes ago, NasimiAsl said:

 you can set texture before fragColor without any effect https://www.babylonjs-playground.com/#UXCB15#34 too may be that help

Thanks.  It works perfectly!  You are the master of shaders.

Do you know if there is a performance hit having to also load the texture file with 1 pixel in it?

Link to comment
Share on other sites

the first simple most work i need look where that have  diffuseTexture  in main shader ( a bit time) 

make a simple bug in forum we work mix standard material and custom material  :D if you need it necessary i can look at close to night

https://www.babylonjs-playground.com/#UXCB15#35 check this source too that most fix some problems

Link to comment
Share on other sites

I see what's happening, you're adding the old diffuse texture with it.  That doesn't work so well for me 'cos I'm morphing and combining textures.  I've combined your texture atlas code with this code https://playground.babylonjs.com/#BDG7ME#23  If I can get specular highlights working for the head in that playground then it should work here too

Link to comment
Share on other sites

  • 1 month later...
  • 2 weeks later...

https://www.babylonjs-playground.com/#UXCB15#40

When you do that and then modify the UV its like there are double textures placed and it does a whole bunch of funky stuff... I was already using that but it was impossible to actually manipulate it and always had a ghost of the diffuseTexture then.

And why would this one :https://www.babylonjs-playground.com/#UXCB15#5
work but then mine wont?

I need to be able to use custom samplers and manipulate the UV or this will be pretty useless.

https://www.babylonjs-playground.com/#UXCB15#41

Like here you can see the ghosting I was talking about when all I did was change the results to a vec3.
https://www.babylonjs-playground.com/#UXCB15#42
^ what the diffuse should look like with no manipulation.

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...