Misaki that's sad. By the way, can you assist with the Spine Webgl setup?
I need just to load my two animations inside two html containers (columns). But i have not found any good example how to do it. I think you have some Spine.js for web browsers maybe? I saw your web player, but i need exactly the WebGl. Can you help please?
Here's an example for html code:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Left and Right Images</title>
<style>
img {
display: block;
max-width: 100%;
height: auto;
}
.left {
float: left;
margin-right: 10px;
}
.right {
float: right;
margin-left: 10px;
}
</style>
</head>
<body>
<img src="left_image.jpg" alt="Left Image" class="left">
<img src="right_image.jpg" alt="Right Image" class="right">
</body>
</html>