Quantcast
Channel: Programming (In-game)
Viewing all articles
Browse latest Browse all 903

Self diagnosing flow chart framework

$
0
0
For some weird reason I have found making this kind of flow chart machinery interesting:

http://steamcommunity.com/sharedfiles/filedetails/?id=1350063872

the point of the whole circus is that you can define the functionality as a sequence of
flow chart states like this:
Code:
new ActionState(new BlockAction(ROT_CAMERA_NAME,
	action: camera_block => {
		var camera = camera_block.CastOrRaise<IMyCameraBlock>();
		camera.EnableRaycast = true;
	}), delay:1),

new...
Self diagnosing flow chart framework

Viewing all articles
Browse latest Browse all 903

Trending Articles