Package cc.plural.ecs.engine

Examples of cc.plural.ecs.engine.IntentRegistry


    public final int moveTopic;

    public SpatialComponent() {
        super();

        IntentRegistry ir = IntentRegistry.lookupSingleton();

        local = new Transformation();
        world = new Transformation();

        xChangeTopic = ir.lookupIntent(SpatialComponentLocalTXChangeIntent.class);
        yChangeTopic = ir.lookupIntent(SpatialComponentLocalTYChangeIntent.class);
        zChangeTopic = ir.lookupIntent(SpatialComponentLocalTZChangeIntent.class);
        moveTopic = ir.lookupIntent(SpatialComponentLocalMoveIntent.class);
    }
View Full Code Here

TOP

Related Classes of cc.plural.ecs.engine.IntentRegistry

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.