Coder Social home page Coder Social logo

dynlight's Introduction

NOTE

We've merged this into the avalon repository and so I won't update this repo any more.

dynLight

Dynamic Lightning for cocos2d-x

This is a simple cocos2d-x version of 2d pixel perfect shadows based on these techniques.

Note

Make sure that the shader files are in your resource path, so they can be found when the DynamicLight class tries to load them up.

On mobile devices this is very slow because the shaders are quite complex and multiple render passes are required. I'm sure this can be optimized with a little effort :)

Usage

    light = DynamicLight::create();
    light->setColor(ccc4(64,130,77,255));
    light->setAccuracy(2.0);
    light->setSoftShadows(true);
    light->setUpScale(2.0);
    light->setLightSize(32);
    light->setAdditive(true);
    
    // this will set the shadow casters
    light->setShadowCasters(dynamic_cast<CCTMXTiledMap*>(this->getParent())->layerNamed("myMap"));

    light->initOcclusionMap();
    light->initShadowMap1D();
    light->initFinalShadowMap();
    light->initBakedShadowMap();
    
    [....]

    void MyClass::update(float fDelta)
    {
        light->setPosition(somePos);
        light->invalidateBakedMap; // recalculate the shadows
    }

dynlight's People

Contributors

jochenheizmann avatar

Watchers

James Cloos avatar Zhen Wang avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.