TP Java LWJGL

Java-specific code for TriplePlay, using PlayN LWJGL backend.

Лицензия

Лицензия

Категории

Категории

Java Языки программирования LWJGL Прикладные библиотеки
Группа

Группа

com.threerings
Идентификатор

Идентификатор

tripleplay-java-lwjgl
Последняя версия

Последняя версия

2.0-rc2
Дата

Дата

Тип

Тип

jar
Описание

Описание

TP Java LWJGL
Java-specific code for TriplePlay, using PlayN LWJGL backend.

Скачать tripleplay-java-lwjgl

Как подключить последнюю версию

<!-- https://jarcasting.com/artifacts/com.threerings/tripleplay-java-lwjgl/ -->
<dependency>
    <groupId>com.threerings</groupId>
    <artifactId>tripleplay-java-lwjgl</artifactId>
    <version>2.0-rc2</version>
</dependency>
// https://jarcasting.com/artifacts/com.threerings/tripleplay-java-lwjgl/
implementation 'com.threerings:tripleplay-java-lwjgl:2.0-rc2'
// https://jarcasting.com/artifacts/com.threerings/tripleplay-java-lwjgl/
implementation ("com.threerings:tripleplay-java-lwjgl:2.0-rc2")
'com.threerings:tripleplay-java-lwjgl:jar:2.0-rc2'
<dependency org="com.threerings" name="tripleplay-java-lwjgl" rev="2.0-rc2">
  <artifact name="tripleplay-java-lwjgl" type="jar" />
</dependency>
@Grapes(
@Grab(group='com.threerings', module='tripleplay-java-lwjgl', version='2.0-rc2')
)
libraryDependencies += "com.threerings" % "tripleplay-java-lwjgl" % "2.0-rc2"
[com.threerings/tripleplay-java-lwjgl "2.0-rc2"]

Зависимости

compile (2)

Идентификатор библиотеки Тип Версия
com.threerings : tripleplay jar 2.0-rc2
io.playn : playn-java-lwjgl jar 2.0-rc2

test (1)

Идентификатор библиотеки Тип Версия
junit : junit jar 4.11

Модули Проекта

Данный проект не имеет модулей.

Triple Play

Triple Play is a collection of game-related utility classes that can be used with the PlayN library on all of its myriad platform targets.

Various documentation-like-things are available:

Building

The library is built using Maven or SBT.

Invoke mvn install to build and install the library to your local Maven repository (i.e. ~/.m2/repository).

Invoke sbt publish-local to build and install the library to your local Ivy repository (i.e. ~/.ivy2/local).

Artifacts

To add a Triple Play dependency to a Maven project, add the following to your pom.xml:

<dependencies>
  <dependency>
    <groupId>com.threerings</groupId>
    <artifactId>tripleplay</artifactId>
    <version>${playn.version}</version>
  </dependency>
</dependencies>

GWT/HTML5

When using Triple Play in a PlayN game that targets the HTML5 or Flash backends, you must make some additional changes.

Add the following to your html/pom.xml (and/or flash/pom.xml):

<dependencies>
  <dependency>
    <groupId>com.threerings</groupId>
    <artifactId>tripleplay</artifactId>
    <version>${playn.version}</version>
    <classifier>sources</classifier>
  </dependency>
</dependencies>

Add a reference to the Triple Play GWT module to your FooGame.gwt.xml file, like so:

<inherits name="tripleplay.TriplePlay"/>

Finally modify the gwt-maven-plugin to override disableClassMetadata which PlayN enables by default:

<plugin>
  <groupId>org.codehaus.mojo</groupId>
  <artifactId>gwt-maven-plugin</artifactId>
  <configuration>
    <disableClassMetadata>false</disableClassMetadata>
  </configuration>
  ...
</plugin>

Distribution

Triple Play is released under the New BSD License. The most recent version of the library is available at https://github.com/threerings/tripleplay

Contact

Questions, comments, and other worldly endeavors can be handled via the Three Rings Libraries Google Group.

com.threerings

Three Rings

Версии библиотеки

Версия
2.0-rc2
2.0-rc1