1234567891011121314151617181920212223242526272829303132333435363738 |
- using System.Reflection;
- using UnityEngine;
- namespace UnityEditor.ShaderGraph
- {
- [Title("Utility", "Logic", "Or")]
- class OrNode : CodeFunctionNode
- {
- public OrNode()
- {
- name = "Or";
- }
- public override bool hasPreview
- {
- get { return false; }
- }
- protected override MethodInfo GetFunctionToConvert()
- {
- return GetType().GetMethod("Unity_Or", BindingFlags.Static | BindingFlags.NonPublic);
- }
- static string Unity_Or(
- [Slot(0, Binding.None)] Boolean A,
- [Slot(1, Binding.None)] Boolean B,
- [Slot(2, Binding.None)] out Boolean Out)
- {
- return
- @"
- {
- Out = A || B;
- }
- ";
- }
- }
- }
|