Skip to content
/ scene3d Public

Gdx library to display scene2d in a 3d environment

License

Notifications You must be signed in to change notification settings

Harium/scene3d

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

scene3d

Maven Central

A libGDX library to display scene2d in a 3d environment.

Current libGDX version: 1.10.0

You can check how it looks, in the DesktopExample.

Install

allprojects {
	ext {
        ...
        scene3dVersion = '0.0.3'
    }
}

Add dependency in your core project (replace -SNAPSHOT by latest release to use a stable version) :

project(":core") {
    dependencies {
    	...
        api "com.harium.gdx:scene3d:$scene3dVersion"
    }
}

For GWT (html) projects you need to add source dependency and inherit GWT module in your core .gwt.xml file.

project(":html") {
    dependencies {
    	...
        api "com.harium.gdx:scene3d:$scene3dVersion:sources"
    }
}
<module>
	<inherits name='Scene3d' />
	...
</module>

About

Gdx library to display scene2d in a 3d environment

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages