Nav apraksta
Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

KeywordDefinition.cs 365B

12345678910
  1. namespace UnityEditor.ShaderGraph
  2. {
  3. [GenerationAPI]
  4. internal enum KeywordDefinition
  5. {
  6. ShaderFeature, // adds #pragma shaderfeature for the keyword
  7. MultiCompile, // adds #pragma multicompile for the keyword
  8. Predefined // does not add ShaderFeature or MultiCompile pragmas, and is forced to be !exposed
  9. }
  10. }