Merge remote-tracking branch 'origin/legacy/reflection' into legacy/reflection
This commit is contained in:
commit
19fdd6ff66
1 changed files with 6 additions and 6 deletions
12
README.md
12
README.md
|
@ -50,13 +50,13 @@ controller.showInHand(p, true);
|
||||||
It's also possible to split one image onto multiple itemframes. For example using the following code.
|
It's also possible to split one image onto multiple itemframes. For example using the following code.
|
||||||
|
|
||||||
```java
|
```java
|
||||||
BufferedImage leftTopFrame = ...;
|
BufferedImage leftTopImg = ...;
|
||||||
BufferedImage leftBottomFrame = ...;
|
BufferedImage leftBottomImg = ...;
|
||||||
BufferedImage rightTopFrame = ...;
|
BufferedImage rightTopImg = ...;
|
||||||
BufferedImage rightBottomFrame = ...;
|
BufferedImage rightBottomImg = ...;
|
||||||
BufferedImage[][] images = {
|
BufferedImage[][] images = {
|
||||||
{leftBottomFrame, leftTopFrame},
|
{leftBottomImg, leftTopImg},
|
||||||
{rightBottomFrame, rightTopFrame}
|
{rightBottomImg, rightTopImg}
|
||||||
};
|
};
|
||||||
|
|
||||||
//--- Wrap image ---
|
//--- Wrap image ---
|
||||||
|
|
Loading…
Add table
Reference in a new issue