Skip to content

Commit a89b775

Browse files
committed
chore: revert features section in readme
1 parent 4a863b7 commit a89b775

1 file changed

Lines changed: 11 additions & 5 deletions

File tree

README.md

Lines changed: 11 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
A Native Java binding for the Live2D Cubism SDK.
44

55
> **Status: Work in Progress**
6-
> This project is currently under development.
6+
> This project is currently under development. Basic model display, interaction, and remote control are implemented.
77
88
## Features
99

@@ -31,7 +31,13 @@ model.loadPhysics(physicsBytes);
3131
model.createRenderer();
3232
model.registerTexture(0, openGLTextureId);
3333

34-
// 4. Update & Draw (in your render loop)
34+
// 4. Interaction & Motion
35+
model.setDragging(nx, ny); // Eye tracking
36+
model.startMotion(motionBytes, priority, loop, name -> {
37+
System.out.println("Motion finished!");
38+
});
39+
40+
// 5. Update & Draw (in your render loop)
3541
model.update(deltaTime);
3642
model.draw(mvpMatrix);
3743
```
@@ -41,7 +47,7 @@ model.draw(mvpMatrix);
4147
- `binding/`: Java API and module definitions.
4248
- `native/`: JNI implementation and CMake build scripts.
4349
- `scripts/`: Python build automation for all platforms.
44-
- `example/`: A complete Maven-based example using LWJGL 3.
50+
- `example/`: A complete Maven-based example using LWJGL 3, including a Swing control panel.
4551

4652
## Building
4753

@@ -57,9 +63,9 @@ The artifacts will be generated in the `out/` directory:
5763

5864
## Contributing
5965

60-
Pull Requests (PRs) are welcome! If you'd like to help implement other features, feel free to contribute.
66+
Pull Requests (PRs) are welcome! Help us implement more SDK features or improve platform compatibility.
6167

6268
## License
6369

6470
- **Binding Code**: Distributed under the [MIT License](LICENSE).
65-
- **Live2D Cubism SDK**: The use of the underlying SDK is governed by the [Live2D Open Software License Agreement](https://www.live2d.com/eula/live2d-open-software-license-agreement_en.html). You must agree to their terms to use the native components.
71+
- **Live2D Cubism SDK**: The use of the underlying SDK is governed by the [Live2D Open Software License Agreement](https://www.live2d.com/eula/live2d-open-software-license-agreement_en.html). You must agree to their terms to use the native components.

0 commit comments

Comments
 (0)