-
Notifications
You must be signed in to change notification settings - Fork 0
/
plugin.html
34 lines (34 loc) · 1.32 KB
/
plugin.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
<!DOCTYPE html>
<html>
<head>
<title>Hello World</title>
<link href="plugin.css" rel="stylesheet">
</head>
<body>
<div class="pluginContainer">
<h1>Hello World</h1>
<p>Create a cuboid of the specified size at the origin.</p>
<div>
<input id="Width" type=number value =12 />
<label>Width</label>
</div>
<div>
<input id="Length" type=number value =12 />
<label>Length</label>
</div>
<div>
<input id="Height" type=number value =12 />
<label>Height</label>
</div>
<input id="CreateBlockBtn" type=button value="Create Cuboid" />
<!--Do not remove below scripts unless you know what you're doing-->
<script type="text/javascript" src="https://formit3d.github.io/FormItExamplePlugins/SharedPluginFiles/FormIt.js"></script>
<script type="text/javascript" src="https://formit3d.github.io/FormItExamplePlugins/SharedPluginFiles/FormItInterface.js"></script>
<script type="text/javascript" src="https://formit3d.github.io/FormItExamplePlugins/SharedPluginFiles/PluginUtils.js"></script>
<script type="text/javascript" src="plugin.js"></script>
<script type="text/javascript">
FormItInterface.Initialize();
</script>
</div>
</body>
</html>