It seems you are using a mesh with an InstancedBufferGeometry. That means you have to use a custom shader. If you do not ensure that this shader uses shadow map related logic, it won’t support shadows.
Yes i am using the custom shader (vertex and fragment). One question here whats the difference if i use instancedMesh instead of mesh and also if i dont want to use so what login i have to use can you please explain me.
When using InstancedMesh you can use all built-in materials (e.g. MeshBasicMaterial) with instancing without customize shaders. Besides, using shadows will work automatically.
If you are not going to use InstancedMesh, you have to enhance your custom shaders by yourself with shadow mapping related code. This is an advanced topic and requires a good understanding of three.js's shaders.
I really need your help in this. I started reading about custom shaders and i see for shadow we have some properties like flatShading and if we enable that so the shadow should work but still i am facing the same issue.