Giter Club home page Giter Club logo

basiclighting's Introduction

BasicLighting

A 2D lighting system using OpenGL, LWJGL, Java.


Screenshot

You can find a cool video here


basiclighting's People

Contributors

bryant1410 avatar jacobbrunson avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

basiclighting's Issues

missing ant build file

last time i did a pull request it was a thorough pain in the arse to work out how to do...
for something simple like this I might as well post it here...

build.xml

ant build/run file
<!-- set global properties for this build -->
<property name="src" location="src"/>
<property name="bin" location="bin"/>
<property name="lwjgl" location="lwjgl-2.9.1/jar"/>

<target
    name="clean" description="removes all classes" >
    <delete>
        <fileset dir="${src}" includes="**/*.class"/>
        <fileset dir="${bin}" includes="**/*.class"/>
    </delete>
</target>

<target 
    name="compile" description="compile the source " >
        <fileset dir="${src}" includes="**/*.class"/>
    <javac 
        srcdir="${src}" destdir="${bin}"
        classpath="${lwjgl}/lwjgl.jar:${lwjgl}/lwjgl_util.jar"
        includeantruntime="false"
        debug="on" debuglevel="lines,vars,source" >
        <compilerarg value="-Xlint:all" />
        <compilerarg value="-Werror" />           
    </javac>
</target>

<target
    name="run" depends="compile"
    description="runs the project compiling if needed" >
    <java
        fork="true" classname="Main"
        classpath="bin:${lwjgl}/lwjgl.jar:${lwjgl}/lwjgl_util.jar" >
            <sysproperty key="java.library.path" value="lwjgl-2.9.1/native/linux/"/>
    </java>
</target>

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.