Wayback Machinekoobas.hobune.stream
May JUN Jul
Previous capture 12 Next capture
2021 2022 2023
1 capture
12 Jun 22 - 12 Jun 22
sparklines
Close Help
  • Products
  • Solutions
  • Made with Unity
  • Learning
  • Support & Services
  • Community
  • Asset Store
  • Get Unity

UNITY ACCOUNT

You need a Unity Account to shop in the Online and Asset Stores, participate in the Unity Community and manage your license portfolio. Login Create account
  • Blog
  • Forums
  • Answers
  • Evangelists
  • User Groups
  • Beta Program
  • Advisory Panel

Navigation

  • Home
  • Products
  • Solutions
  • Made with Unity
  • Learning
  • Support & Services
  • Community
    • Blog
    • Forums
    • Answers
    • Evangelists
    • User Groups
    • Beta Program
    • Advisory Panel

Unity account

You need a Unity Account to shop in the Online and Asset Stores, participate in the Unity Community and manage your license portfolio. Login Create account

Language

  • Chinese
  • Spanish
  • Japanese
  • Korean
  • Portuguese
  • Ask a question
  • Spaces
    • Default
    • Help Room
    • META
    • Moderators
    • Topics
    • Questions
    • Users
    • Badges
  • Home /
avatar image
1
Question by nyonge · May 14, 2017 at 06:08 PM · shadershader programmingvertexsurfacepass

Surface Shader, run vertex multiple times

How do I run a Surface shader's vertex script multiple times? Essentially putting a For loop inside the vert code.

My vertex code extrudes the verts of a mesh to make a border glow effect. It creates a copy of the verts, moves them back in the z-axis, and offsets the x and y axes so it appears behind/beside the original mesh. It then applies a glow material.

I can only figure out how to run it once, basically setting "x + 5", "y + 0". What I want to do is run the code multiple times, with the X and Y changing each time so it outlines it on all sides.

(For various reasons I can't just expand the scale of the mesh and invert it as you normally would, I've achieved that effect on other meshes but it doesn't work here.)

Edit: to be clear, I'd want the "For" loop passes to be a definable int, so I can control how detailed the border is. Whether it's just a left-right-up-down offset, or a rounded border mesh with 8-16 extrusions.

Here's my actual code, if it helps. Again, what I'd ideally want is some kind of For loop in "void vert". Thanks!

         CGPROGRAM
 
         //PROGRAM: Border Outline Glow Effect Walls
 
         #pragma surface surf Lambert vertex:vert
 
         sampler2D _MainTex;
         sampler2D _Illum;
         fixed4 _DiffuseColor;
         fixed4 _EmissionColor;
         float _EmissionGain;
         float _EmissionTextureContrast;
 
         float _VXAmount;
         float _VXDepth;
 
         struct Input {
             float2 uv_MainTex;
             float2 uv_Illum;
         };
 
         void vert(inout appdata_full v) {
             v.vertex.x += v.normal.z * _VXAmount;
             v.vertex.y += v.normal.z * _VXAmount;
             v.vertex.z += v.normal.z * _VXDepth;
         }
 
         void surf (Input IN, inout SurfaceOutput o) {
             //fixed4 tex = tex2D(_MainTex, IN.uv_MainTex);
             //fixed4 c = tex * _DiffuseColor;
             fixed4 c = _DiffuseColor;
             o.Albedo = c.rgb;
             fixed3 emissTex = tex2D(_Illum, IN.uv_Illum).rgb;
             float emissL = max(max(emissTex.r, emissTex.g), emissTex.b);
             fixed3 emissN = emissTex / (emissL + 0.0001);
             emissL = pow(emissL, _EmissionTextureContrast);
             emissTex = emissN * emissL;
             
             o.Emission = _EmissionColor * emissTex * (exp(_EmissionGain * 10.0f));
             o.Alpha = c.a;
 
         }
 
         ENDCG
Comment
Add comment
10 |3000 characters needed characters left characters exceeded
▼
  • Viewable by all users
  • Viewable by moderators
  • Viewable by moderators and the original poster
  • Advanced visibility
Viewable by all users

0 Replies

· Add your reply
  • Sort: 

Your answer

Hint: You can notify a user about this post by typing @username

Up to 2 attachments (including images) can be used with a maximum of 524.3 kB each and 1.0 MB total.

Follow this Question

Answers Answers and Comments

92 People are following this question.

avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image

Related Questions

Depth-only pass in Surface Shader 1 Answer

Reuse vertices modified in a previous shader pass 1 Answer

Need help with using world position in shader 1 Answer

Vertex program max instructions limit 2 Answers

Vertex Texture Lookup Breaking in Unity 3.5 0 Answers


Enterprise
Social Q&A

Social
Subscribe on YouTube social-youtube Follow on LinkedIn social-linkedin Follow on Twitter social-twitter Follow on Facebook social-facebook Follow on Instagram social-instagram

Footer

  • Purchase
    • Products
    • Subscription
    • Asset Store
    • Unity Gear
    • Resellers
  • Education
    • Students
    • Educators
    • Certification
    • Learn
    • Center of Excellence
  • Download
    • Unity
    • Beta Program
  • Unity Labs
    • Labs
    • Publications
  • Resources
    • Learn platform
    • Community
    • Documentation
    • Unity QA
    • FAQ
    • Services Status
    • Connect
  • About Unity
    • About Us
    • Blog
    • Events
    • Careers
    • Contact
    • Press
    • Partners
    • Affiliates
    • Security
Copyright © 2020 Unity Technologies
  • Legal
  • Privacy Policy
  • Cookies
  • Do Not Sell My Personal Information
  • Cookies Settings
"Unity", Unity logos, and other Unity trademarks are trademarks or registered trademarks of Unity Technologies or its affiliates in the U.S. and elsewhere (more info here). Other names or brands are trademarks of their respective owners.
  • Anonymous
  • Sign in
  • Create
  • Ask a question
  • Spaces
  • Default
  • Help Room
  • META
  • Moderators
  • Explore
  • Topics
  • Questions
  • Users
  • Badges