Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/raeleus/TenPatch
An alternative to libGDX's 9patch implementation.
https://github.com/raeleus/TenPatch
libgdx
Last synced: 15 days ago
JSON representation
An alternative to libGDX's 9patch implementation.
- Host: GitHub
- URL: https://github.com/raeleus/TenPatch
- Owner: raeleus
- License: mit
- Created: 2019-04-07T09:56:04.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2022-03-30T16:12:01.000Z (over 2 years ago)
- Last Synced: 2024-08-02T07:09:07.796Z (4 months ago)
- Topics: libgdx
- Language: Java
- Homepage:
- Size: 1.58 MB
- Stars: 49
- Watchers: 3
- Forks: 6
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGES.md
- License: LICENSE
Awesome Lists containing this project
- awesome-libgdx - TenPatch - An alternative to libGDX's 9patch implementation that implements multiple stretch regions. (Resources / User Interface)
README
# README #
### TenPatch ###
Version 5.2.3
This project is an alternative to libGDX's 9patch implementation. It has the following features:
* Multiple stretch regions as seen with Android's implementation.
* An option for tiling stretch regions.
* Tiling offsets to achieve the appearance of a moving background.
* Tintable.
* Gradients.
* Animated images.
* Can be shrunk to size 0 without the artificats as seen in libGDX's 9patch.
* Loading via skin JSON.
* An editor via [Skin Composer](https://github.com/raeleus/skin-composer).### How to Use ###
Add the following to your root build.gradle:
```groovy
allprojects {
...
repositories {
...
maven { url 'https://jitpack.io' }
}
}
```Add the dependency to the core project:
```groovy
project(":core") {
apply plugin: "java"dependencies {
...
compile 'com.github.raeleus.TenPatch:tenpatch:5.2.3'
}
}
```For HTML5/GWT support, add the dependency to the html project:
```groovy
project(":html") {
apply plugin: "gwt"
apply plugin: "war"dependencies {
...
compile 'com.github.raeleus.TenPatch:tenpatch:5.2.3:sources'
}
}
```And add the following line to the GdxDefinition.gwt.xml file in the HTML project:
```xml```
Please see the examples in the [demo project](https://github.com/raeleus/TenPatch/tree/master/demo/src/com/ray3k/tenpatch/demo/desktop).
To create and edit your own Ten Patches, see the [documentation in Skin Composer](https://github.com/raeleus/skin-composer/wiki/Ten-Patches).### Contact ###
* This project is maintained by Raymond "Raeleus" Buckley
* http://ray3k.wordpress.com
* raymond.ray3k (at) gmail.com### License ###
MIT LicenseCopyright (c) 2021 Raymond Buckley
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.