This is our new product for our Artstation store: Power Control ZBrush Plugin. It adds real full screen mode toggle to ZBrush, useful scultpting brushes toggles, and many buttons to control your brushes.
https://www.artstation.com/a/2669726
Power Control ZBrush Plugin
|
This is our new product for our Artstation store: Power Control ZBrush Plugin. It adds real full screen mode toggle to ZBrush, useful scultpting brushes toggles, and many buttons to control your brushes.
https://www.artstation.com/a/2669726
Easy Curves ZBrush Plugin and Curves Tutorial
|
We did a new product at Artstation: Easy Curves ZBrush Plugin and Curves Tutorial .
Power Image Browser: Reference image browser for artists
|
This is our new product for our Artstation store: Power Image Browser: Reference image browser for artists. Power Image Browser is a reference image tabbed browser for artists. It is based on folders, so each tab shows the images that are inside a folder. You can open as many tabs as you need, so you can browse your reference images for each part of your work easier than ever.
Top 20 Sellers at Artstation: Artistic Squad
|
VRML/X3D Return: Put your VRML worlds online again
|
Among the 3, I recommend Awardspace, for its simplicity, speed and reliability
Once up, create a website. This website you are on was created with Typesetter CMS. Typesetter doesn't use databases or anything complex, installation is very easy. If not, use one of the software that the server you have chosen has. Or make a simple web page. Of all these options, the simplest is to use Typesetter.
At this point, you will have:
We need a bridge between the two. The way to do it is to create an .html document with this content:
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8"/>
<link rel="stylesheet" type="text/css" href="https://create3000.github.io/code/x_ite/4.6.16/dist/x_ite.css"/>
<script type="text/javascript"
src="https://create3000.github.io/code/x_ite/4.6.16/dist/x_ite.min.js"></script>
<style>
X3DCanvas {
width: 100%;
height: 100%;
position: absolute;
}
</style>
</head>
<body>
<X3DCanvas src="folder/world.wrl">
<p>Your browser may not support all features required by X_ITE!</p>
</X3DCanvas>
</body>
</html>
As you can see, there are two parts to copy. The first one is put in the head section, and it is the load of the VRML / X3D viewer called X_ite. X_ite can be downloaded, it's just a couple of files, and use it from your own server if you prefer. If not, just paste these yellow lines inside the head section.
In X3DCanvas, you can see that the width and height of the frame displayed by the VRML is expressed. The width and height as it is in our example is for full window in your browser or mobile. You can specify a size as usual in html, but also remove the "position: absolute;" line if you do.
In the body part you have to paste the code that specifies which world to load. The first line is:
<X3DCanvas src="folder/world.wrl">
In this line, "folder" is the folder on your server that contains the VRML file. If there is no such folder, because the world is in the root, do not put anything, and directly put the name of the .wrl file for example:
<X3DCanvas src="world.wrl">