Search found 7 matches

by ZeroX
2021/06/27 12:01
Forum: Request
Topic: Mark Start() and Awake() as protected virtual
Replies: 4
Views: 4114

Re: Mark Start() and Awake() as protected virtual

Thank you for accepting the request, I look forward to it in the next version.
by ZeroX
2021/06/26 15:53
Forum: Request
Topic: Mark Start() and Awake() as protected virtual
Replies: 4
Views: 4114

Re: Mark Start() and Awake() as protected virtual

Extension methods will not be able to access non-public properties, nor can they store data on the component itself.
The Control Component will make it look unencapsulated.
Currently, I'm using like this:
by ZeroX
2021/06/26 15:38
Forum: Bug Report
Topic: Error choosing component type in ParameterContainer
Replies: 3
Views: 3010

Re: Error choosing component type in ParameterContainer

Thank you for your support, I have fixed the problem.
by ZeroX
2021/06/26 11:38
Forum: Request
Topic: Mark Start() and Awake() as protected virtual
Replies: 4
Views: 4114

Mark Start() and Awake() as protected virtual

Hi Arbor team, I am creating a class that inherits ArborFSM to add some features I want. I need to init some things when Awake() or Start(), but they are not marked as virtual. I had to fix it in your source. Can you mark those 2 methods as virtual, or create methods OnAwake(), OnStart() for easy in...
by ZeroX
2021/06/26 11:05
Forum: Bug Report
Topic: Error choosing component type in ParameterContainer
Replies: 3
Views: 3010

Error choosing component type in ParameterContainer

Hi Arbor Team, I am using ParameterContainer to store data. An error occurred when I selected the parameter type as component, and then when I click to select the type for the component, I get the error as below: https://youtu.be/0h4Uh1hfXlA Version information: Arbor 3 version: 3.8.1 Unity version:...
by ZeroX
2021/05/03 15:33
Forum: Request
Topic: Transition with parameters
Replies: 2
Views: 3541

Re: Transition with parameters

Thank for the reply,
I hope this can be added in the future.
In my opinion this will help developers who tend to code StateBehavior and use arbor as a tool rather than using visual scripting instead of coding.
by ZeroX
2021/05/03 00:26
Forum: Request
Topic: Transition with parameters
Replies: 2
Views: 3541

Transition with parameters

Hello arbor team, I am wondering if there are any transition with parameters? Something like this: 1, Transition (Dictionary <object, object> paremeters) or 2, Transition (params object [] parameters) But personally I prefer way # 1 since being able to access the exact parameter by id and check for ...