Constant function in Openbullet
-
Hello, I was wondering how constant function will be looks like in c#
private Function functionType = Function.Constant;
/// <summary>The function to execute.</summary>
public Function FunctionType { get { return functionType; } set { functionType = value; OnPropertyChanged(); } }I saw this but still I can’t get where is the input
-
You can find it in RuriLib#Blocks#BlockFunction.inputString
private string inputString = ""; /// <summary>The input string on which the function will be executed (not always needed).</summary> public string InputString { get { return inputString; } set { inputString = value; OnPropertyChanged(); } }