├── .gitignore ├── .scripts └── .convert_rendertype.py ├── .shader_utils └── vsh_util.glsl ├── CoreShadersCustomTemplateRP ├── assets │ └── minecraft │ │ └── shaders │ │ ├── core │ │ ├── blit_screen.json │ │ ├── block.json │ │ ├── main │ │ │ ├── rendertype_block.vsh │ │ │ ├── rendertype_end_portal.vsh │ │ │ ├── rendertype_entity.vsh │ │ │ ├── rendertype_entity_colored.vsh │ │ │ ├── rendertype_entity_dynamic.vsh │ │ │ ├── rendertype_entity_glint.vsh │ │ │ ├── rendertype_entity_leash.vsh │ │ │ ├── rendertype_entity_lightmap_colored.vsh │ │ │ ├── rendertype_lines.vsh │ │ │ ├── rendertype_position.vsh │ │ │ ├── rendertype_position_color.vsh │ │ │ ├── rendertype_position_tex_color.vsh │ │ │ ├── rendertype_text.vsh │ │ │ └── rendertype_text_see_through.vsh │ │ ├── new_entity.json │ │ ├── particle.json │ │ ├── position.json │ │ ├── position_color.json │ │ ├── position_color_lightmap.json │ │ ├── position_color_normal.json │ │ ├── position_color_tex.json │ │ ├── position_color_tex_lightmap.json │ │ ├── position_tex.json │ │ ├── position_tex_color.json │ │ ├── position_tex_color_normal.json │ │ ├── position_tex_lightmap_color.json │ │ ├── rendertype_armor_cutout_no_cull.json │ │ ├── rendertype_armor_entity_glint.json │ │ ├── rendertype_armor_glint.json │ │ ├── rendertype_beacon_beam.json │ │ ├── rendertype_breeze_wind.json │ │ ├── rendertype_crumbling.json │ │ ├── rendertype_cutout.json │ │ ├── rendertype_cutout_mipped.json │ │ ├── rendertype_end_gateway.json │ │ ├── rendertype_end_portal.json │ │ ├── rendertype_energy_swirl.json │ │ ├── rendertype_entity_alpha.json │ │ ├── rendertype_entity_cutout.json │ │ ├── rendertype_entity_cutout_no_cull.json │ │ ├── rendertype_entity_cutout_no_cull_z_offset.json │ │ ├── rendertype_entity_decal.json │ │ ├── rendertype_entity_glint.json │ │ ├── rendertype_entity_glint_direct.json │ │ ├── rendertype_entity_no_outline.json │ │ ├── rendertype_entity_shadow.json │ │ ├── rendertype_entity_smooth_cutout.json │ │ ├── rendertype_entity_solid.json │ │ ├── rendertype_entity_translucent.json │ │ ├── rendertype_entity_translucent_cull.json │ │ ├── rendertype_entity_translucent_emissive.json │ │ ├── rendertype_eyes.json │ │ ├── rendertype_glint.json │ │ ├── rendertype_glint_direct.json │ │ ├── rendertype_glint_translucent.json │ │ ├── rendertype_item_entity_translucent_cull.json │ │ ├── rendertype_leash.json │ │ ├── rendertype_lightning.json │ │ ├── rendertype_lines.json │ │ ├── rendertype_outline.json │ │ ├── rendertype_solid.json │ │ ├── rendertype_text.json │ │ ├── rendertype_text_see_through.json │ │ ├── rendertype_translucent.json │ │ ├── rendertype_translucent_moving_block.json │ │ ├── rendertype_translucent_no_crumbling.json │ │ ├── rendertype_tripwire.json │ │ └── rendertype_water_mask.json │ │ └── include │ │ └── vsh_util.glsl └── pack.mcmeta ├── LICENSE ├── OrthographicShaderRP ├── README.txt ├── assets │ └── minecraft │ │ └── shaders │ │ ├── core │ │ ├── block.json │ │ ├── main │ │ │ ├── rendertype_block.vsh │ │ │ ├── rendertype_end_portal.vsh │ │ │ ├── rendertype_entity.vsh │ │ │ ├── rendertype_entity_colored.vsh │ │ │ ├── rendertype_entity_dynamic.vsh │ │ │ ├── rendertype_entity_glint.vsh │ │ │ ├── rendertype_entity_leash.vsh │ │ │ ├── rendertype_entity_lightmap_colored.vsh │ │ │ ├── rendertype_lines.vsh │ │ │ ├── rendertype_position.vsh │ │ │ ├── rendertype_position_color.vsh │ │ │ ├── rendertype_position_tex_color.vsh │ │ │ ├── rendertype_text.vsh │ │ │ └── rendertype_text_see_through.vsh │ │ ├── new_entity.json │ │ ├── particle.json │ │ ├── position.json │ │ ├── position_color.json │ │ ├── position_color_lightmap.json │ │ ├── position_color_normal.json │ │ ├── position_color_tex.json │ │ ├── position_color_tex_lightmap.json │ │ ├── position_tex.json │ │ ├── position_tex_color.json │ │ ├── position_tex_color_normal.json │ │ ├── position_tex_lightmap_color.json │ │ ├── rendertype_armor_cutout_no_cull.json │ │ ├── rendertype_armor_entity_glint.json │ │ ├── rendertype_armor_glint.json │ │ ├── rendertype_beacon_beam.json │ │ ├── rendertype_breeze_wind.json │ │ ├── rendertype_crumbling.json │ │ ├── rendertype_cutout.json │ │ ├── rendertype_cutout_mipped.json │ │ ├── rendertype_end_gateway.json │ │ ├── rendertype_end_portal.json │ │ ├── rendertype_energy_swirl.json │ │ ├── rendertype_entity_alpha.json │ │ ├── rendertype_entity_cutout.json │ │ ├── rendertype_entity_cutout_no_cull.json │ │ ├── rendertype_entity_cutout_no_cull_z_offset.json │ │ ├── rendertype_entity_decal.json │ │ ├── rendertype_entity_glint.json │ │ ├── rendertype_entity_glint_direct.json │ │ ├── rendertype_entity_no_outline.json │ │ ├── rendertype_entity_shadow.json │ │ ├── rendertype_entity_smooth_cutout.json │ │ ├── rendertype_entity_solid.json │ │ ├── rendertype_entity_translucent.json │ │ ├── rendertype_entity_translucent_cull.json │ │ ├── rendertype_entity_translucent_emissive.json │ │ ├── rendertype_eyes.json │ │ ├── rendertype_glint.json │ │ ├── rendertype_glint_direct.json │ │ ├── rendertype_glint_translucent.json │ │ ├── rendertype_item_entity_translucent_cull.json │ │ ├── rendertype_leash.json │ │ ├── rendertype_lightning.json │ │ ├── rendertype_lines.json │ │ ├── rendertype_outline.json │ │ ├── rendertype_solid.json │ │ ├── rendertype_text.json │ │ ├── rendertype_text_see_through.json │ │ ├── rendertype_translucent.json │ │ ├── rendertype_translucent_moving_block.json │ │ ├── rendertype_translucent_no_crumbling.json │ │ ├── rendertype_tripwire.json │ │ └── rendertype_water_mask.json │ │ └── include │ │ ├── ortho_config.glsl │ │ └── vsh_util.glsl ├── pack.mcmeta └── pack.png ├── README.md └── VertexFadeRP ├── README.txt ├── assets └── minecraft │ └── shaders │ ├── core │ ├── main │ │ ├── rendertype_block.vsh │ │ ├── rendertype_block_translucent.vsh │ │ └── rendertype_entity.vsh │ ├── rendertype_beacon_beam.json │ ├── rendertype_breeze_wind.json │ ├── rendertype_crumbling.json │ ├── rendertype_cutout.json │ ├── rendertype_cutout_mipped.json │ ├── rendertype_entity_alpha.json │ ├── rendertype_entity_cutout.json │ ├── rendertype_entity_cutout_no_cull.json │ ├── rendertype_entity_cutout_no_cull_z_offset.json │ ├── rendertype_entity_decal.json │ ├── rendertype_entity_glint.json │ ├── rendertype_entity_glint_direct.json │ ├── rendertype_entity_no_outline.json │ ├── rendertype_entity_shadow.json │ ├── rendertype_entity_smooth_cutout.json │ ├── rendertype_entity_solid.json │ ├── rendertype_entity_translucent.json │ ├── rendertype_entity_translucent_cull.json │ ├── rendertype_entity_translucent_emissive.json │ ├── rendertype_eyes.json │ ├── rendertype_glint.json │ ├── rendertype_glint_direct.json │ ├── rendertype_glint_translucent.json │ ├── rendertype_item_entity_translucent_cull.json │ ├── rendertype_leash.json │ ├── rendertype_solid.json │ ├── rendertype_translucent.json │ ├── rendertype_translucent_moving_block.json │ ├── rendertype_translucent_no_crumbling.json │ └── rendertype_water_mask.json │ └── include │ └── vertex_fade.glsl ├── pack.mcmeta └── pack.png /.gitignore: -------------------------------------------------------------------------------- 1 | distr -------------------------------------------------------------------------------- /.scripts/.convert_rendertype.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onnowhere/core_shaders/HEAD/.scripts/.convert_rendertype.py -------------------------------------------------------------------------------- /.shader_utils/vsh_util.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onnowhere/core_shaders/HEAD/.shader_utils/vsh_util.glsl -------------------------------------------------------------------------------- /CoreShadersCustomTemplateRP/assets/minecraft/shaders/core/blit_screen.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onnowhere/core_shaders/HEAD/CoreShadersCustomTemplateRP/assets/minecraft/shaders/core/blit_screen.json -------------------------------------------------------------------------------- /CoreShadersCustomTemplateRP/assets/minecraft/shaders/core/block.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onnowhere/core_shaders/HEAD/CoreShadersCustomTemplateRP/assets/minecraft/shaders/core/block.json -------------------------------------------------------------------------------- /CoreShadersCustomTemplateRP/assets/minecraft/shaders/core/main/rendertype_block.vsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onnowhere/core_shaders/HEAD/CoreShadersCustomTemplateRP/assets/minecraft/shaders/core/main/rendertype_block.vsh -------------------------------------------------------------------------------- /CoreShadersCustomTemplateRP/assets/minecraft/shaders/core/main/rendertype_end_portal.vsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onnowhere/core_shaders/HEAD/CoreShadersCustomTemplateRP/assets/minecraft/shaders/core/main/rendertype_end_portal.vsh -------------------------------------------------------------------------------- /CoreShadersCustomTemplateRP/assets/minecraft/shaders/core/main/rendertype_entity.vsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onnowhere/core_shaders/HEAD/CoreShadersCustomTemplateRP/assets/minecraft/shaders/core/main/rendertype_entity.vsh -------------------------------------------------------------------------------- /CoreShadersCustomTemplateRP/assets/minecraft/shaders/core/main/rendertype_entity_colored.vsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onnowhere/core_shaders/HEAD/CoreShadersCustomTemplateRP/assets/minecraft/shaders/core/main/rendertype_entity_colored.vsh -------------------------------------------------------------------------------- /CoreShadersCustomTemplateRP/assets/minecraft/shaders/core/main/rendertype_entity_dynamic.vsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onnowhere/core_shaders/HEAD/CoreShadersCustomTemplateRP/assets/minecraft/shaders/core/main/rendertype_entity_dynamic.vsh -------------------------------------------------------------------------------- /CoreShadersCustomTemplateRP/assets/minecraft/shaders/core/main/rendertype_entity_glint.vsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onnowhere/core_shaders/HEAD/CoreShadersCustomTemplateRP/assets/minecraft/shaders/core/main/rendertype_entity_glint.vsh -------------------------------------------------------------------------------- /CoreShadersCustomTemplateRP/assets/minecraft/shaders/core/main/rendertype_entity_leash.vsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onnowhere/core_shaders/HEAD/CoreShadersCustomTemplateRP/assets/minecraft/shaders/core/main/rendertype_entity_leash.vsh -------------------------------------------------------------------------------- /CoreShadersCustomTemplateRP/assets/minecraft/shaders/core/main/rendertype_entity_lightmap_colored.vsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onnowhere/core_shaders/HEAD/CoreShadersCustomTemplateRP/assets/minecraft/shaders/core/main/rendertype_entity_lightmap_colored.vsh -------------------------------------------------------------------------------- /CoreShadersCustomTemplateRP/assets/minecraft/shaders/core/main/rendertype_lines.vsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onnowhere/core_shaders/HEAD/CoreShadersCustomTemplateRP/assets/minecraft/shaders/core/main/rendertype_lines.vsh -------------------------------------------------------------------------------- /CoreShadersCustomTemplateRP/assets/minecraft/shaders/core/main/rendertype_position.vsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onnowhere/core_shaders/HEAD/CoreShadersCustomTemplateRP/assets/minecraft/shaders/core/main/rendertype_position.vsh -------------------------------------------------------------------------------- /CoreShadersCustomTemplateRP/assets/minecraft/shaders/core/main/rendertype_position_color.vsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onnowhere/core_shaders/HEAD/CoreShadersCustomTemplateRP/assets/minecraft/shaders/core/main/rendertype_position_color.vsh -------------------------------------------------------------------------------- /CoreShadersCustomTemplateRP/assets/minecraft/shaders/core/main/rendertype_position_tex_color.vsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onnowhere/core_shaders/HEAD/CoreShadersCustomTemplateRP/assets/minecraft/shaders/core/main/rendertype_position_tex_color.vsh -------------------------------------------------------------------------------- /CoreShadersCustomTemplateRP/assets/minecraft/shaders/core/main/rendertype_text.vsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onnowhere/core_shaders/HEAD/CoreShadersCustomTemplateRP/assets/minecraft/shaders/core/main/rendertype_text.vsh -------------------------------------------------------------------------------- /CoreShadersCustomTemplateRP/assets/minecraft/shaders/core/main/rendertype_text_see_through.vsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onnowhere/core_shaders/HEAD/CoreShadersCustomTemplateRP/assets/minecraft/shaders/core/main/rendertype_text_see_through.vsh -------------------------------------------------------------------------------- /CoreShadersCustomTemplateRP/assets/minecraft/shaders/core/new_entity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onnowhere/core_shaders/HEAD/CoreShadersCustomTemplateRP/assets/minecraft/shaders/core/new_entity.json -------------------------------------------------------------------------------- /CoreShadersCustomTemplateRP/assets/minecraft/shaders/core/particle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onnowhere/core_shaders/HEAD/CoreShadersCustomTemplateRP/assets/minecraft/shaders/core/particle.json -------------------------------------------------------------------------------- /CoreShadersCustomTemplateRP/assets/minecraft/shaders/core/position.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onnowhere/core_shaders/HEAD/CoreShadersCustomTemplateRP/assets/minecraft/shaders/core/position.json -------------------------------------------------------------------------------- /CoreShadersCustomTemplateRP/assets/minecraft/shaders/core/position_color.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onnowhere/core_shaders/HEAD/CoreShadersCustomTemplateRP/assets/minecraft/shaders/core/position_color.json -------------------------------------------------------------------------------- /CoreShadersCustomTemplateRP/assets/minecraft/shaders/core/position_color_lightmap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onnowhere/core_shaders/HEAD/CoreShadersCustomTemplateRP/assets/minecraft/shaders/core/position_color_lightmap.json -------------------------------------------------------------------------------- /CoreShadersCustomTemplateRP/assets/minecraft/shaders/core/position_color_normal.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onnowhere/core_shaders/HEAD/CoreShadersCustomTemplateRP/assets/minecraft/shaders/core/position_color_normal.json -------------------------------------------------------------------------------- /CoreShadersCustomTemplateRP/assets/minecraft/shaders/core/position_color_tex.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onnowhere/core_shaders/HEAD/CoreShadersCustomTemplateRP/assets/minecraft/shaders/core/position_color_tex.json -------------------------------------------------------------------------------- /CoreShadersCustomTemplateRP/assets/minecraft/shaders/core/position_color_tex_lightmap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onnowhere/core_shaders/HEAD/CoreShadersCustomTemplateRP/assets/minecraft/shaders/core/position_color_tex_lightmap.json -------------------------------------------------------------------------------- /CoreShadersCustomTemplateRP/assets/minecraft/shaders/core/position_tex.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onnowhere/core_shaders/HEAD/CoreShadersCustomTemplateRP/assets/minecraft/shaders/core/position_tex.json -------------------------------------------------------------------------------- /CoreShadersCustomTemplateRP/assets/minecraft/shaders/core/position_tex_color.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onnowhere/core_shaders/HEAD/CoreShadersCustomTemplateRP/assets/minecraft/shaders/core/position_tex_color.json -------------------------------------------------------------------------------- /CoreShadersCustomTemplateRP/assets/minecraft/shaders/core/position_tex_color_normal.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onnowhere/core_shaders/HEAD/CoreShadersCustomTemplateRP/assets/minecraft/shaders/core/position_tex_color_normal.json -------------------------------------------------------------------------------- /CoreShadersCustomTemplateRP/assets/minecraft/shaders/core/position_tex_lightmap_color.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onnowhere/core_shaders/HEAD/CoreShadersCustomTemplateRP/assets/minecraft/shaders/core/position_tex_lightmap_color.json -------------------------------------------------------------------------------- /CoreShadersCustomTemplateRP/assets/minecraft/shaders/core/rendertype_armor_cutout_no_cull.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onnowhere/core_shaders/HEAD/CoreShadersCustomTemplateRP/assets/minecraft/shaders/core/rendertype_armor_cutout_no_cull.json -------------------------------------------------------------------------------- /CoreShadersCustomTemplateRP/assets/minecraft/shaders/core/rendertype_armor_entity_glint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onnowhere/core_shaders/HEAD/CoreShadersCustomTemplateRP/assets/minecraft/shaders/core/rendertype_armor_entity_glint.json -------------------------------------------------------------------------------- /CoreShadersCustomTemplateRP/assets/minecraft/shaders/core/rendertype_armor_glint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onnowhere/core_shaders/HEAD/CoreShadersCustomTemplateRP/assets/minecraft/shaders/core/rendertype_armor_glint.json -------------------------------------------------------------------------------- /CoreShadersCustomTemplateRP/assets/minecraft/shaders/core/rendertype_beacon_beam.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onnowhere/core_shaders/HEAD/CoreShadersCustomTemplateRP/assets/minecraft/shaders/core/rendertype_beacon_beam.json -------------------------------------------------------------------------------- /CoreShadersCustomTemplateRP/assets/minecraft/shaders/core/rendertype_breeze_wind.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onnowhere/core_shaders/HEAD/CoreShadersCustomTemplateRP/assets/minecraft/shaders/core/rendertype_breeze_wind.json -------------------------------------------------------------------------------- /CoreShadersCustomTemplateRP/assets/minecraft/shaders/core/rendertype_crumbling.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onnowhere/core_shaders/HEAD/CoreShadersCustomTemplateRP/assets/minecraft/shaders/core/rendertype_crumbling.json -------------------------------------------------------------------------------- /CoreShadersCustomTemplateRP/assets/minecraft/shaders/core/rendertype_cutout.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onnowhere/core_shaders/HEAD/CoreShadersCustomTemplateRP/assets/minecraft/shaders/core/rendertype_cutout.json -------------------------------------------------------------------------------- /CoreShadersCustomTemplateRP/assets/minecraft/shaders/core/rendertype_cutout_mipped.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onnowhere/core_shaders/HEAD/CoreShadersCustomTemplateRP/assets/minecraft/shaders/core/rendertype_cutout_mipped.json -------------------------------------------------------------------------------- /CoreShadersCustomTemplateRP/assets/minecraft/shaders/core/rendertype_end_gateway.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onnowhere/core_shaders/HEAD/CoreShadersCustomTemplateRP/assets/minecraft/shaders/core/rendertype_end_gateway.json -------------------------------------------------------------------------------- /CoreShadersCustomTemplateRP/assets/minecraft/shaders/core/rendertype_end_portal.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onnowhere/core_shaders/HEAD/CoreShadersCustomTemplateRP/assets/minecraft/shaders/core/rendertype_end_portal.json -------------------------------------------------------------------------------- /CoreShadersCustomTemplateRP/assets/minecraft/shaders/core/rendertype_energy_swirl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onnowhere/core_shaders/HEAD/CoreShadersCustomTemplateRP/assets/minecraft/shaders/core/rendertype_energy_swirl.json -------------------------------------------------------------------------------- /CoreShadersCustomTemplateRP/assets/minecraft/shaders/core/rendertype_entity_alpha.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onnowhere/core_shaders/HEAD/CoreShadersCustomTemplateRP/assets/minecraft/shaders/core/rendertype_entity_alpha.json -------------------------------------------------------------------------------- /CoreShadersCustomTemplateRP/assets/minecraft/shaders/core/rendertype_entity_cutout.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onnowhere/core_shaders/HEAD/CoreShadersCustomTemplateRP/assets/minecraft/shaders/core/rendertype_entity_cutout.json -------------------------------------------------------------------------------- /CoreShadersCustomTemplateRP/assets/minecraft/shaders/core/rendertype_entity_cutout_no_cull.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onnowhere/core_shaders/HEAD/CoreShadersCustomTemplateRP/assets/minecraft/shaders/core/rendertype_entity_cutout_no_cull.json -------------------------------------------------------------------------------- /CoreShadersCustomTemplateRP/assets/minecraft/shaders/core/rendertype_entity_cutout_no_cull_z_offset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onnowhere/core_shaders/HEAD/CoreShadersCustomTemplateRP/assets/minecraft/shaders/core/rendertype_entity_cutout_no_cull_z_offset.json -------------------------------------------------------------------------------- /CoreShadersCustomTemplateRP/assets/minecraft/shaders/core/rendertype_entity_decal.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onnowhere/core_shaders/HEAD/CoreShadersCustomTemplateRP/assets/minecraft/shaders/core/rendertype_entity_decal.json -------------------------------------------------------------------------------- /CoreShadersCustomTemplateRP/assets/minecraft/shaders/core/rendertype_entity_glint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onnowhere/core_shaders/HEAD/CoreShadersCustomTemplateRP/assets/minecraft/shaders/core/rendertype_entity_glint.json -------------------------------------------------------------------------------- /CoreShadersCustomTemplateRP/assets/minecraft/shaders/core/rendertype_entity_glint_direct.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onnowhere/core_shaders/HEAD/CoreShadersCustomTemplateRP/assets/minecraft/shaders/core/rendertype_entity_glint_direct.json -------------------------------------------------------------------------------- /CoreShadersCustomTemplateRP/assets/minecraft/shaders/core/rendertype_entity_no_outline.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onnowhere/core_shaders/HEAD/CoreShadersCustomTemplateRP/assets/minecraft/shaders/core/rendertype_entity_no_outline.json -------------------------------------------------------------------------------- /CoreShadersCustomTemplateRP/assets/minecraft/shaders/core/rendertype_entity_shadow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onnowhere/core_shaders/HEAD/CoreShadersCustomTemplateRP/assets/minecraft/shaders/core/rendertype_entity_shadow.json -------------------------------------------------------------------------------- /CoreShadersCustomTemplateRP/assets/minecraft/shaders/core/rendertype_entity_smooth_cutout.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onnowhere/core_shaders/HEAD/CoreShadersCustomTemplateRP/assets/minecraft/shaders/core/rendertype_entity_smooth_cutout.json -------------------------------------------------------------------------------- /CoreShadersCustomTemplateRP/assets/minecraft/shaders/core/rendertype_entity_solid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onnowhere/core_shaders/HEAD/CoreShadersCustomTemplateRP/assets/minecraft/shaders/core/rendertype_entity_solid.json -------------------------------------------------------------------------------- /CoreShadersCustomTemplateRP/assets/minecraft/shaders/core/rendertype_entity_translucent.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onnowhere/core_shaders/HEAD/CoreShadersCustomTemplateRP/assets/minecraft/shaders/core/rendertype_entity_translucent.json -------------------------------------------------------------------------------- /CoreShadersCustomTemplateRP/assets/minecraft/shaders/core/rendertype_entity_translucent_cull.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onnowhere/core_shaders/HEAD/CoreShadersCustomTemplateRP/assets/minecraft/shaders/core/rendertype_entity_translucent_cull.json -------------------------------------------------------------------------------- /CoreShadersCustomTemplateRP/assets/minecraft/shaders/core/rendertype_entity_translucent_emissive.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onnowhere/core_shaders/HEAD/CoreShadersCustomTemplateRP/assets/minecraft/shaders/core/rendertype_entity_translucent_emissive.json -------------------------------------------------------------------------------- /CoreShadersCustomTemplateRP/assets/minecraft/shaders/core/rendertype_eyes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onnowhere/core_shaders/HEAD/CoreShadersCustomTemplateRP/assets/minecraft/shaders/core/rendertype_eyes.json -------------------------------------------------------------------------------- /CoreShadersCustomTemplateRP/assets/minecraft/shaders/core/rendertype_glint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onnowhere/core_shaders/HEAD/CoreShadersCustomTemplateRP/assets/minecraft/shaders/core/rendertype_glint.json -------------------------------------------------------------------------------- /CoreShadersCustomTemplateRP/assets/minecraft/shaders/core/rendertype_glint_direct.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onnowhere/core_shaders/HEAD/CoreShadersCustomTemplateRP/assets/minecraft/shaders/core/rendertype_glint_direct.json -------------------------------------------------------------------------------- /CoreShadersCustomTemplateRP/assets/minecraft/shaders/core/rendertype_glint_translucent.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onnowhere/core_shaders/HEAD/CoreShadersCustomTemplateRP/assets/minecraft/shaders/core/rendertype_glint_translucent.json -------------------------------------------------------------------------------- /CoreShadersCustomTemplateRP/assets/minecraft/shaders/core/rendertype_item_entity_translucent_cull.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onnowhere/core_shaders/HEAD/CoreShadersCustomTemplateRP/assets/minecraft/shaders/core/rendertype_item_entity_translucent_cull.json -------------------------------------------------------------------------------- /CoreShadersCustomTemplateRP/assets/minecraft/shaders/core/rendertype_leash.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onnowhere/core_shaders/HEAD/CoreShadersCustomTemplateRP/assets/minecraft/shaders/core/rendertype_leash.json -------------------------------------------------------------------------------- /CoreShadersCustomTemplateRP/assets/minecraft/shaders/core/rendertype_lightning.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onnowhere/core_shaders/HEAD/CoreShadersCustomTemplateRP/assets/minecraft/shaders/core/rendertype_lightning.json -------------------------------------------------------------------------------- /CoreShadersCustomTemplateRP/assets/minecraft/shaders/core/rendertype_lines.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onnowhere/core_shaders/HEAD/CoreShadersCustomTemplateRP/assets/minecraft/shaders/core/rendertype_lines.json -------------------------------------------------------------------------------- /CoreShadersCustomTemplateRP/assets/minecraft/shaders/core/rendertype_outline.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onnowhere/core_shaders/HEAD/CoreShadersCustomTemplateRP/assets/minecraft/shaders/core/rendertype_outline.json -------------------------------------------------------------------------------- /CoreShadersCustomTemplateRP/assets/minecraft/shaders/core/rendertype_solid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onnowhere/core_shaders/HEAD/CoreShadersCustomTemplateRP/assets/minecraft/shaders/core/rendertype_solid.json -------------------------------------------------------------------------------- /CoreShadersCustomTemplateRP/assets/minecraft/shaders/core/rendertype_text.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onnowhere/core_shaders/HEAD/CoreShadersCustomTemplateRP/assets/minecraft/shaders/core/rendertype_text.json -------------------------------------------------------------------------------- /CoreShadersCustomTemplateRP/assets/minecraft/shaders/core/rendertype_text_see_through.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onnowhere/core_shaders/HEAD/CoreShadersCustomTemplateRP/assets/minecraft/shaders/core/rendertype_text_see_through.json -------------------------------------------------------------------------------- /CoreShadersCustomTemplateRP/assets/minecraft/shaders/core/rendertype_translucent.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onnowhere/core_shaders/HEAD/CoreShadersCustomTemplateRP/assets/minecraft/shaders/core/rendertype_translucent.json -------------------------------------------------------------------------------- /CoreShadersCustomTemplateRP/assets/minecraft/shaders/core/rendertype_translucent_moving_block.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onnowhere/core_shaders/HEAD/CoreShadersCustomTemplateRP/assets/minecraft/shaders/core/rendertype_translucent_moving_block.json -------------------------------------------------------------------------------- /CoreShadersCustomTemplateRP/assets/minecraft/shaders/core/rendertype_translucent_no_crumbling.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onnowhere/core_shaders/HEAD/CoreShadersCustomTemplateRP/assets/minecraft/shaders/core/rendertype_translucent_no_crumbling.json -------------------------------------------------------------------------------- /CoreShadersCustomTemplateRP/assets/minecraft/shaders/core/rendertype_tripwire.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onnowhere/core_shaders/HEAD/CoreShadersCustomTemplateRP/assets/minecraft/shaders/core/rendertype_tripwire.json -------------------------------------------------------------------------------- /CoreShadersCustomTemplateRP/assets/minecraft/shaders/core/rendertype_water_mask.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onnowhere/core_shaders/HEAD/CoreShadersCustomTemplateRP/assets/minecraft/shaders/core/rendertype_water_mask.json -------------------------------------------------------------------------------- /CoreShadersCustomTemplateRP/assets/minecraft/shaders/include/vsh_util.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onnowhere/core_shaders/HEAD/CoreShadersCustomTemplateRP/assets/minecraft/shaders/include/vsh_util.glsl -------------------------------------------------------------------------------- /CoreShadersCustomTemplateRP/pack.mcmeta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onnowhere/core_shaders/HEAD/CoreShadersCustomTemplateRP/pack.mcmeta -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onnowhere/core_shaders/HEAD/LICENSE -------------------------------------------------------------------------------- /OrthographicShaderRP/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onnowhere/core_shaders/HEAD/OrthographicShaderRP/README.txt -------------------------------------------------------------------------------- /OrthographicShaderRP/assets/minecraft/shaders/core/block.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onnowhere/core_shaders/HEAD/OrthographicShaderRP/assets/minecraft/shaders/core/block.json -------------------------------------------------------------------------------- /OrthographicShaderRP/assets/minecraft/shaders/core/main/rendertype_block.vsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onnowhere/core_shaders/HEAD/OrthographicShaderRP/assets/minecraft/shaders/core/main/rendertype_block.vsh -------------------------------------------------------------------------------- /OrthographicShaderRP/assets/minecraft/shaders/core/main/rendertype_end_portal.vsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onnowhere/core_shaders/HEAD/OrthographicShaderRP/assets/minecraft/shaders/core/main/rendertype_end_portal.vsh -------------------------------------------------------------------------------- /OrthographicShaderRP/assets/minecraft/shaders/core/main/rendertype_entity.vsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onnowhere/core_shaders/HEAD/OrthographicShaderRP/assets/minecraft/shaders/core/main/rendertype_entity.vsh -------------------------------------------------------------------------------- /OrthographicShaderRP/assets/minecraft/shaders/core/main/rendertype_entity_colored.vsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onnowhere/core_shaders/HEAD/OrthographicShaderRP/assets/minecraft/shaders/core/main/rendertype_entity_colored.vsh -------------------------------------------------------------------------------- /OrthographicShaderRP/assets/minecraft/shaders/core/main/rendertype_entity_dynamic.vsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onnowhere/core_shaders/HEAD/OrthographicShaderRP/assets/minecraft/shaders/core/main/rendertype_entity_dynamic.vsh -------------------------------------------------------------------------------- /OrthographicShaderRP/assets/minecraft/shaders/core/main/rendertype_entity_glint.vsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onnowhere/core_shaders/HEAD/OrthographicShaderRP/assets/minecraft/shaders/core/main/rendertype_entity_glint.vsh -------------------------------------------------------------------------------- /OrthographicShaderRP/assets/minecraft/shaders/core/main/rendertype_entity_leash.vsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onnowhere/core_shaders/HEAD/OrthographicShaderRP/assets/minecraft/shaders/core/main/rendertype_entity_leash.vsh -------------------------------------------------------------------------------- /OrthographicShaderRP/assets/minecraft/shaders/core/main/rendertype_entity_lightmap_colored.vsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onnowhere/core_shaders/HEAD/OrthographicShaderRP/assets/minecraft/shaders/core/main/rendertype_entity_lightmap_colored.vsh -------------------------------------------------------------------------------- /OrthographicShaderRP/assets/minecraft/shaders/core/main/rendertype_lines.vsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onnowhere/core_shaders/HEAD/OrthographicShaderRP/assets/minecraft/shaders/core/main/rendertype_lines.vsh -------------------------------------------------------------------------------- /OrthographicShaderRP/assets/minecraft/shaders/core/main/rendertype_position.vsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onnowhere/core_shaders/HEAD/OrthographicShaderRP/assets/minecraft/shaders/core/main/rendertype_position.vsh -------------------------------------------------------------------------------- /OrthographicShaderRP/assets/minecraft/shaders/core/main/rendertype_position_color.vsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onnowhere/core_shaders/HEAD/OrthographicShaderRP/assets/minecraft/shaders/core/main/rendertype_position_color.vsh -------------------------------------------------------------------------------- /OrthographicShaderRP/assets/minecraft/shaders/core/main/rendertype_position_tex_color.vsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onnowhere/core_shaders/HEAD/OrthographicShaderRP/assets/minecraft/shaders/core/main/rendertype_position_tex_color.vsh -------------------------------------------------------------------------------- /OrthographicShaderRP/assets/minecraft/shaders/core/main/rendertype_text.vsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onnowhere/core_shaders/HEAD/OrthographicShaderRP/assets/minecraft/shaders/core/main/rendertype_text.vsh -------------------------------------------------------------------------------- /OrthographicShaderRP/assets/minecraft/shaders/core/main/rendertype_text_see_through.vsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onnowhere/core_shaders/HEAD/OrthographicShaderRP/assets/minecraft/shaders/core/main/rendertype_text_see_through.vsh -------------------------------------------------------------------------------- /OrthographicShaderRP/assets/minecraft/shaders/core/new_entity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onnowhere/core_shaders/HEAD/OrthographicShaderRP/assets/minecraft/shaders/core/new_entity.json -------------------------------------------------------------------------------- /OrthographicShaderRP/assets/minecraft/shaders/core/particle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onnowhere/core_shaders/HEAD/OrthographicShaderRP/assets/minecraft/shaders/core/particle.json -------------------------------------------------------------------------------- /OrthographicShaderRP/assets/minecraft/shaders/core/position.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onnowhere/core_shaders/HEAD/OrthographicShaderRP/assets/minecraft/shaders/core/position.json -------------------------------------------------------------------------------- /OrthographicShaderRP/assets/minecraft/shaders/core/position_color.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onnowhere/core_shaders/HEAD/OrthographicShaderRP/assets/minecraft/shaders/core/position_color.json -------------------------------------------------------------------------------- /OrthographicShaderRP/assets/minecraft/shaders/core/position_color_lightmap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onnowhere/core_shaders/HEAD/OrthographicShaderRP/assets/minecraft/shaders/core/position_color_lightmap.json -------------------------------------------------------------------------------- /OrthographicShaderRP/assets/minecraft/shaders/core/position_color_normal.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onnowhere/core_shaders/HEAD/OrthographicShaderRP/assets/minecraft/shaders/core/position_color_normal.json -------------------------------------------------------------------------------- /OrthographicShaderRP/assets/minecraft/shaders/core/position_color_tex.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onnowhere/core_shaders/HEAD/OrthographicShaderRP/assets/minecraft/shaders/core/position_color_tex.json -------------------------------------------------------------------------------- /OrthographicShaderRP/assets/minecraft/shaders/core/position_color_tex_lightmap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onnowhere/core_shaders/HEAD/OrthographicShaderRP/assets/minecraft/shaders/core/position_color_tex_lightmap.json -------------------------------------------------------------------------------- /OrthographicShaderRP/assets/minecraft/shaders/core/position_tex.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onnowhere/core_shaders/HEAD/OrthographicShaderRP/assets/minecraft/shaders/core/position_tex.json -------------------------------------------------------------------------------- /OrthographicShaderRP/assets/minecraft/shaders/core/position_tex_color.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onnowhere/core_shaders/HEAD/OrthographicShaderRP/assets/minecraft/shaders/core/position_tex_color.json -------------------------------------------------------------------------------- /OrthographicShaderRP/assets/minecraft/shaders/core/position_tex_color_normal.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onnowhere/core_shaders/HEAD/OrthographicShaderRP/assets/minecraft/shaders/core/position_tex_color_normal.json -------------------------------------------------------------------------------- /OrthographicShaderRP/assets/minecraft/shaders/core/position_tex_lightmap_color.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onnowhere/core_shaders/HEAD/OrthographicShaderRP/assets/minecraft/shaders/core/position_tex_lightmap_color.json -------------------------------------------------------------------------------- /OrthographicShaderRP/assets/minecraft/shaders/core/rendertype_armor_cutout_no_cull.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onnowhere/core_shaders/HEAD/OrthographicShaderRP/assets/minecraft/shaders/core/rendertype_armor_cutout_no_cull.json -------------------------------------------------------------------------------- /OrthographicShaderRP/assets/minecraft/shaders/core/rendertype_armor_entity_glint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onnowhere/core_shaders/HEAD/OrthographicShaderRP/assets/minecraft/shaders/core/rendertype_armor_entity_glint.json -------------------------------------------------------------------------------- /OrthographicShaderRP/assets/minecraft/shaders/core/rendertype_armor_glint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onnowhere/core_shaders/HEAD/OrthographicShaderRP/assets/minecraft/shaders/core/rendertype_armor_glint.json -------------------------------------------------------------------------------- /OrthographicShaderRP/assets/minecraft/shaders/core/rendertype_beacon_beam.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onnowhere/core_shaders/HEAD/OrthographicShaderRP/assets/minecraft/shaders/core/rendertype_beacon_beam.json -------------------------------------------------------------------------------- /OrthographicShaderRP/assets/minecraft/shaders/core/rendertype_breeze_wind.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onnowhere/core_shaders/HEAD/OrthographicShaderRP/assets/minecraft/shaders/core/rendertype_breeze_wind.json -------------------------------------------------------------------------------- /OrthographicShaderRP/assets/minecraft/shaders/core/rendertype_crumbling.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onnowhere/core_shaders/HEAD/OrthographicShaderRP/assets/minecraft/shaders/core/rendertype_crumbling.json -------------------------------------------------------------------------------- /OrthographicShaderRP/assets/minecraft/shaders/core/rendertype_cutout.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onnowhere/core_shaders/HEAD/OrthographicShaderRP/assets/minecraft/shaders/core/rendertype_cutout.json -------------------------------------------------------------------------------- /OrthographicShaderRP/assets/minecraft/shaders/core/rendertype_cutout_mipped.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onnowhere/core_shaders/HEAD/OrthographicShaderRP/assets/minecraft/shaders/core/rendertype_cutout_mipped.json -------------------------------------------------------------------------------- /OrthographicShaderRP/assets/minecraft/shaders/core/rendertype_end_gateway.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onnowhere/core_shaders/HEAD/OrthographicShaderRP/assets/minecraft/shaders/core/rendertype_end_gateway.json -------------------------------------------------------------------------------- /OrthographicShaderRP/assets/minecraft/shaders/core/rendertype_end_portal.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onnowhere/core_shaders/HEAD/OrthographicShaderRP/assets/minecraft/shaders/core/rendertype_end_portal.json -------------------------------------------------------------------------------- /OrthographicShaderRP/assets/minecraft/shaders/core/rendertype_energy_swirl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onnowhere/core_shaders/HEAD/OrthographicShaderRP/assets/minecraft/shaders/core/rendertype_energy_swirl.json -------------------------------------------------------------------------------- /OrthographicShaderRP/assets/minecraft/shaders/core/rendertype_entity_alpha.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onnowhere/core_shaders/HEAD/OrthographicShaderRP/assets/minecraft/shaders/core/rendertype_entity_alpha.json -------------------------------------------------------------------------------- /OrthographicShaderRP/assets/minecraft/shaders/core/rendertype_entity_cutout.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onnowhere/core_shaders/HEAD/OrthographicShaderRP/assets/minecraft/shaders/core/rendertype_entity_cutout.json -------------------------------------------------------------------------------- /OrthographicShaderRP/assets/minecraft/shaders/core/rendertype_entity_cutout_no_cull.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onnowhere/core_shaders/HEAD/OrthographicShaderRP/assets/minecraft/shaders/core/rendertype_entity_cutout_no_cull.json -------------------------------------------------------------------------------- /OrthographicShaderRP/assets/minecraft/shaders/core/rendertype_entity_cutout_no_cull_z_offset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onnowhere/core_shaders/HEAD/OrthographicShaderRP/assets/minecraft/shaders/core/rendertype_entity_cutout_no_cull_z_offset.json -------------------------------------------------------------------------------- /OrthographicShaderRP/assets/minecraft/shaders/core/rendertype_entity_decal.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onnowhere/core_shaders/HEAD/OrthographicShaderRP/assets/minecraft/shaders/core/rendertype_entity_decal.json -------------------------------------------------------------------------------- /OrthographicShaderRP/assets/minecraft/shaders/core/rendertype_entity_glint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onnowhere/core_shaders/HEAD/OrthographicShaderRP/assets/minecraft/shaders/core/rendertype_entity_glint.json -------------------------------------------------------------------------------- /OrthographicShaderRP/assets/minecraft/shaders/core/rendertype_entity_glint_direct.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onnowhere/core_shaders/HEAD/OrthographicShaderRP/assets/minecraft/shaders/core/rendertype_entity_glint_direct.json -------------------------------------------------------------------------------- /OrthographicShaderRP/assets/minecraft/shaders/core/rendertype_entity_no_outline.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onnowhere/core_shaders/HEAD/OrthographicShaderRP/assets/minecraft/shaders/core/rendertype_entity_no_outline.json -------------------------------------------------------------------------------- /OrthographicShaderRP/assets/minecraft/shaders/core/rendertype_entity_shadow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onnowhere/core_shaders/HEAD/OrthographicShaderRP/assets/minecraft/shaders/core/rendertype_entity_shadow.json -------------------------------------------------------------------------------- /OrthographicShaderRP/assets/minecraft/shaders/core/rendertype_entity_smooth_cutout.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onnowhere/core_shaders/HEAD/OrthographicShaderRP/assets/minecraft/shaders/core/rendertype_entity_smooth_cutout.json -------------------------------------------------------------------------------- /OrthographicShaderRP/assets/minecraft/shaders/core/rendertype_entity_solid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onnowhere/core_shaders/HEAD/OrthographicShaderRP/assets/minecraft/shaders/core/rendertype_entity_solid.json -------------------------------------------------------------------------------- /OrthographicShaderRP/assets/minecraft/shaders/core/rendertype_entity_translucent.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onnowhere/core_shaders/HEAD/OrthographicShaderRP/assets/minecraft/shaders/core/rendertype_entity_translucent.json -------------------------------------------------------------------------------- /OrthographicShaderRP/assets/minecraft/shaders/core/rendertype_entity_translucent_cull.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onnowhere/core_shaders/HEAD/OrthographicShaderRP/assets/minecraft/shaders/core/rendertype_entity_translucent_cull.json -------------------------------------------------------------------------------- /OrthographicShaderRP/assets/minecraft/shaders/core/rendertype_entity_translucent_emissive.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onnowhere/core_shaders/HEAD/OrthographicShaderRP/assets/minecraft/shaders/core/rendertype_entity_translucent_emissive.json -------------------------------------------------------------------------------- /OrthographicShaderRP/assets/minecraft/shaders/core/rendertype_eyes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onnowhere/core_shaders/HEAD/OrthographicShaderRP/assets/minecraft/shaders/core/rendertype_eyes.json -------------------------------------------------------------------------------- /OrthographicShaderRP/assets/minecraft/shaders/core/rendertype_glint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onnowhere/core_shaders/HEAD/OrthographicShaderRP/assets/minecraft/shaders/core/rendertype_glint.json -------------------------------------------------------------------------------- /OrthographicShaderRP/assets/minecraft/shaders/core/rendertype_glint_direct.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onnowhere/core_shaders/HEAD/OrthographicShaderRP/assets/minecraft/shaders/core/rendertype_glint_direct.json -------------------------------------------------------------------------------- /OrthographicShaderRP/assets/minecraft/shaders/core/rendertype_glint_translucent.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onnowhere/core_shaders/HEAD/OrthographicShaderRP/assets/minecraft/shaders/core/rendertype_glint_translucent.json -------------------------------------------------------------------------------- /OrthographicShaderRP/assets/minecraft/shaders/core/rendertype_item_entity_translucent_cull.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onnowhere/core_shaders/HEAD/OrthographicShaderRP/assets/minecraft/shaders/core/rendertype_item_entity_translucent_cull.json -------------------------------------------------------------------------------- /OrthographicShaderRP/assets/minecraft/shaders/core/rendertype_leash.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onnowhere/core_shaders/HEAD/OrthographicShaderRP/assets/minecraft/shaders/core/rendertype_leash.json -------------------------------------------------------------------------------- /OrthographicShaderRP/assets/minecraft/shaders/core/rendertype_lightning.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onnowhere/core_shaders/HEAD/OrthographicShaderRP/assets/minecraft/shaders/core/rendertype_lightning.json -------------------------------------------------------------------------------- /OrthographicShaderRP/assets/minecraft/shaders/core/rendertype_lines.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onnowhere/core_shaders/HEAD/OrthographicShaderRP/assets/minecraft/shaders/core/rendertype_lines.json -------------------------------------------------------------------------------- /OrthographicShaderRP/assets/minecraft/shaders/core/rendertype_outline.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onnowhere/core_shaders/HEAD/OrthographicShaderRP/assets/minecraft/shaders/core/rendertype_outline.json -------------------------------------------------------------------------------- /OrthographicShaderRP/assets/minecraft/shaders/core/rendertype_solid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onnowhere/core_shaders/HEAD/OrthographicShaderRP/assets/minecraft/shaders/core/rendertype_solid.json -------------------------------------------------------------------------------- /OrthographicShaderRP/assets/minecraft/shaders/core/rendertype_text.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onnowhere/core_shaders/HEAD/OrthographicShaderRP/assets/minecraft/shaders/core/rendertype_text.json -------------------------------------------------------------------------------- /OrthographicShaderRP/assets/minecraft/shaders/core/rendertype_text_see_through.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onnowhere/core_shaders/HEAD/OrthographicShaderRP/assets/minecraft/shaders/core/rendertype_text_see_through.json -------------------------------------------------------------------------------- /OrthographicShaderRP/assets/minecraft/shaders/core/rendertype_translucent.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onnowhere/core_shaders/HEAD/OrthographicShaderRP/assets/minecraft/shaders/core/rendertype_translucent.json -------------------------------------------------------------------------------- /OrthographicShaderRP/assets/minecraft/shaders/core/rendertype_translucent_moving_block.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onnowhere/core_shaders/HEAD/OrthographicShaderRP/assets/minecraft/shaders/core/rendertype_translucent_moving_block.json -------------------------------------------------------------------------------- /OrthographicShaderRP/assets/minecraft/shaders/core/rendertype_translucent_no_crumbling.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onnowhere/core_shaders/HEAD/OrthographicShaderRP/assets/minecraft/shaders/core/rendertype_translucent_no_crumbling.json -------------------------------------------------------------------------------- /OrthographicShaderRP/assets/minecraft/shaders/core/rendertype_tripwire.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onnowhere/core_shaders/HEAD/OrthographicShaderRP/assets/minecraft/shaders/core/rendertype_tripwire.json -------------------------------------------------------------------------------- /OrthographicShaderRP/assets/minecraft/shaders/core/rendertype_water_mask.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onnowhere/core_shaders/HEAD/OrthographicShaderRP/assets/minecraft/shaders/core/rendertype_water_mask.json -------------------------------------------------------------------------------- /OrthographicShaderRP/assets/minecraft/shaders/include/ortho_config.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onnowhere/core_shaders/HEAD/OrthographicShaderRP/assets/minecraft/shaders/include/ortho_config.glsl -------------------------------------------------------------------------------- /OrthographicShaderRP/assets/minecraft/shaders/include/vsh_util.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onnowhere/core_shaders/HEAD/OrthographicShaderRP/assets/minecraft/shaders/include/vsh_util.glsl -------------------------------------------------------------------------------- /OrthographicShaderRP/pack.mcmeta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onnowhere/core_shaders/HEAD/OrthographicShaderRP/pack.mcmeta -------------------------------------------------------------------------------- /OrthographicShaderRP/pack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onnowhere/core_shaders/HEAD/OrthographicShaderRP/pack.png -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onnowhere/core_shaders/HEAD/README.md -------------------------------------------------------------------------------- /VertexFadeRP/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onnowhere/core_shaders/HEAD/VertexFadeRP/README.txt -------------------------------------------------------------------------------- /VertexFadeRP/assets/minecraft/shaders/core/main/rendertype_block.vsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onnowhere/core_shaders/HEAD/VertexFadeRP/assets/minecraft/shaders/core/main/rendertype_block.vsh -------------------------------------------------------------------------------- /VertexFadeRP/assets/minecraft/shaders/core/main/rendertype_block_translucent.vsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onnowhere/core_shaders/HEAD/VertexFadeRP/assets/minecraft/shaders/core/main/rendertype_block_translucent.vsh -------------------------------------------------------------------------------- /VertexFadeRP/assets/minecraft/shaders/core/main/rendertype_entity.vsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onnowhere/core_shaders/HEAD/VertexFadeRP/assets/minecraft/shaders/core/main/rendertype_entity.vsh -------------------------------------------------------------------------------- /VertexFadeRP/assets/minecraft/shaders/core/rendertype_beacon_beam.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onnowhere/core_shaders/HEAD/VertexFadeRP/assets/minecraft/shaders/core/rendertype_beacon_beam.json -------------------------------------------------------------------------------- /VertexFadeRP/assets/minecraft/shaders/core/rendertype_breeze_wind.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onnowhere/core_shaders/HEAD/VertexFadeRP/assets/minecraft/shaders/core/rendertype_breeze_wind.json -------------------------------------------------------------------------------- /VertexFadeRP/assets/minecraft/shaders/core/rendertype_crumbling.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onnowhere/core_shaders/HEAD/VertexFadeRP/assets/minecraft/shaders/core/rendertype_crumbling.json -------------------------------------------------------------------------------- /VertexFadeRP/assets/minecraft/shaders/core/rendertype_cutout.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onnowhere/core_shaders/HEAD/VertexFadeRP/assets/minecraft/shaders/core/rendertype_cutout.json -------------------------------------------------------------------------------- /VertexFadeRP/assets/minecraft/shaders/core/rendertype_cutout_mipped.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onnowhere/core_shaders/HEAD/VertexFadeRP/assets/minecraft/shaders/core/rendertype_cutout_mipped.json -------------------------------------------------------------------------------- /VertexFadeRP/assets/minecraft/shaders/core/rendertype_entity_alpha.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onnowhere/core_shaders/HEAD/VertexFadeRP/assets/minecraft/shaders/core/rendertype_entity_alpha.json -------------------------------------------------------------------------------- /VertexFadeRP/assets/minecraft/shaders/core/rendertype_entity_cutout.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onnowhere/core_shaders/HEAD/VertexFadeRP/assets/minecraft/shaders/core/rendertype_entity_cutout.json -------------------------------------------------------------------------------- /VertexFadeRP/assets/minecraft/shaders/core/rendertype_entity_cutout_no_cull.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onnowhere/core_shaders/HEAD/VertexFadeRP/assets/minecraft/shaders/core/rendertype_entity_cutout_no_cull.json -------------------------------------------------------------------------------- /VertexFadeRP/assets/minecraft/shaders/core/rendertype_entity_cutout_no_cull_z_offset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onnowhere/core_shaders/HEAD/VertexFadeRP/assets/minecraft/shaders/core/rendertype_entity_cutout_no_cull_z_offset.json -------------------------------------------------------------------------------- /VertexFadeRP/assets/minecraft/shaders/core/rendertype_entity_decal.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onnowhere/core_shaders/HEAD/VertexFadeRP/assets/minecraft/shaders/core/rendertype_entity_decal.json -------------------------------------------------------------------------------- /VertexFadeRP/assets/minecraft/shaders/core/rendertype_entity_glint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onnowhere/core_shaders/HEAD/VertexFadeRP/assets/minecraft/shaders/core/rendertype_entity_glint.json -------------------------------------------------------------------------------- /VertexFadeRP/assets/minecraft/shaders/core/rendertype_entity_glint_direct.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onnowhere/core_shaders/HEAD/VertexFadeRP/assets/minecraft/shaders/core/rendertype_entity_glint_direct.json -------------------------------------------------------------------------------- /VertexFadeRP/assets/minecraft/shaders/core/rendertype_entity_no_outline.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onnowhere/core_shaders/HEAD/VertexFadeRP/assets/minecraft/shaders/core/rendertype_entity_no_outline.json -------------------------------------------------------------------------------- /VertexFadeRP/assets/minecraft/shaders/core/rendertype_entity_shadow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onnowhere/core_shaders/HEAD/VertexFadeRP/assets/minecraft/shaders/core/rendertype_entity_shadow.json -------------------------------------------------------------------------------- /VertexFadeRP/assets/minecraft/shaders/core/rendertype_entity_smooth_cutout.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onnowhere/core_shaders/HEAD/VertexFadeRP/assets/minecraft/shaders/core/rendertype_entity_smooth_cutout.json -------------------------------------------------------------------------------- /VertexFadeRP/assets/minecraft/shaders/core/rendertype_entity_solid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onnowhere/core_shaders/HEAD/VertexFadeRP/assets/minecraft/shaders/core/rendertype_entity_solid.json -------------------------------------------------------------------------------- /VertexFadeRP/assets/minecraft/shaders/core/rendertype_entity_translucent.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onnowhere/core_shaders/HEAD/VertexFadeRP/assets/minecraft/shaders/core/rendertype_entity_translucent.json -------------------------------------------------------------------------------- /VertexFadeRP/assets/minecraft/shaders/core/rendertype_entity_translucent_cull.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onnowhere/core_shaders/HEAD/VertexFadeRP/assets/minecraft/shaders/core/rendertype_entity_translucent_cull.json -------------------------------------------------------------------------------- /VertexFadeRP/assets/minecraft/shaders/core/rendertype_entity_translucent_emissive.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onnowhere/core_shaders/HEAD/VertexFadeRP/assets/minecraft/shaders/core/rendertype_entity_translucent_emissive.json -------------------------------------------------------------------------------- /VertexFadeRP/assets/minecraft/shaders/core/rendertype_eyes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onnowhere/core_shaders/HEAD/VertexFadeRP/assets/minecraft/shaders/core/rendertype_eyes.json -------------------------------------------------------------------------------- /VertexFadeRP/assets/minecraft/shaders/core/rendertype_glint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onnowhere/core_shaders/HEAD/VertexFadeRP/assets/minecraft/shaders/core/rendertype_glint.json -------------------------------------------------------------------------------- /VertexFadeRP/assets/minecraft/shaders/core/rendertype_glint_direct.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onnowhere/core_shaders/HEAD/VertexFadeRP/assets/minecraft/shaders/core/rendertype_glint_direct.json -------------------------------------------------------------------------------- /VertexFadeRP/assets/minecraft/shaders/core/rendertype_glint_translucent.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onnowhere/core_shaders/HEAD/VertexFadeRP/assets/minecraft/shaders/core/rendertype_glint_translucent.json -------------------------------------------------------------------------------- /VertexFadeRP/assets/minecraft/shaders/core/rendertype_item_entity_translucent_cull.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onnowhere/core_shaders/HEAD/VertexFadeRP/assets/minecraft/shaders/core/rendertype_item_entity_translucent_cull.json -------------------------------------------------------------------------------- /VertexFadeRP/assets/minecraft/shaders/core/rendertype_leash.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onnowhere/core_shaders/HEAD/VertexFadeRP/assets/minecraft/shaders/core/rendertype_leash.json -------------------------------------------------------------------------------- /VertexFadeRP/assets/minecraft/shaders/core/rendertype_solid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onnowhere/core_shaders/HEAD/VertexFadeRP/assets/minecraft/shaders/core/rendertype_solid.json -------------------------------------------------------------------------------- /VertexFadeRP/assets/minecraft/shaders/core/rendertype_translucent.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onnowhere/core_shaders/HEAD/VertexFadeRP/assets/minecraft/shaders/core/rendertype_translucent.json -------------------------------------------------------------------------------- /VertexFadeRP/assets/minecraft/shaders/core/rendertype_translucent_moving_block.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onnowhere/core_shaders/HEAD/VertexFadeRP/assets/minecraft/shaders/core/rendertype_translucent_moving_block.json -------------------------------------------------------------------------------- /VertexFadeRP/assets/minecraft/shaders/core/rendertype_translucent_no_crumbling.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onnowhere/core_shaders/HEAD/VertexFadeRP/assets/minecraft/shaders/core/rendertype_translucent_no_crumbling.json -------------------------------------------------------------------------------- /VertexFadeRP/assets/minecraft/shaders/core/rendertype_water_mask.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onnowhere/core_shaders/HEAD/VertexFadeRP/assets/minecraft/shaders/core/rendertype_water_mask.json -------------------------------------------------------------------------------- /VertexFadeRP/assets/minecraft/shaders/include/vertex_fade.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onnowhere/core_shaders/HEAD/VertexFadeRP/assets/minecraft/shaders/include/vertex_fade.glsl -------------------------------------------------------------------------------- /VertexFadeRP/pack.mcmeta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onnowhere/core_shaders/HEAD/VertexFadeRP/pack.mcmeta -------------------------------------------------------------------------------- /VertexFadeRP/pack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onnowhere/core_shaders/HEAD/VertexFadeRP/pack.png --------------------------------------------------------------------------------