# FlowReactorComponent

### Namespace

```csharp
using FlowReactor;
```

### GetExposedVariables

```csharp
public T GetExposedVariable(string _nodeName, string _variableName) where T : FRVariable //
```

Returns exposed variable by its name.

**Example**

```csharp
using FlowReactor;
 
public FlowReactorComponent flowReactor;
 
var _stringVariable = flowReactor.GetExposedVariable<FRString>("DebugLog", "log");
```

### GetOverrideVariable

```csharp
public T GetOverrideVariable<T>(string _id) where T : FRVariable
```

Returns an overriden blackboard variable

**Example**

```csharp
var _string = flowReactor.GetOverrideVariable<frstring>("MyFRString");
Debug.Log(_string.Value);
```

### SetOverrideVariable

```csharp
public void SetOverrideVariable<t>(T value, string _id) where T : FRVariable
```

Set a value to an overriden blackboard variable


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://giantgrey.gitbook.io/flowreactor/api/flowreactorcomponent.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
