forked from curtisjamesholt/EasyBPY
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocs.html
More file actions
92 lines (76 loc) · 2.37 KB
/
docs.html
File metadata and controls
92 lines (76 loc) · 2.37 KB
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
<head>
<title>EasyBPY Docs</title>
<style>
.code {
background-color: #eee;
border: 1px solid #999;
display: block;
padding: 10px;
}
.showing {
background-color: lightblue;
padding-bottom: 10px;
}
.Break-point {
height: 20px;
background-color: grey;
}
</style>
</head>
<h1>This is EasyBPY's docs (Yohello1 edition)</h1>
<h2>This is the format most things will be in</h2>
<div class="showing">
<h3>Function name here</h3>
<p>Quick explanation of what it does, and how it works</p>
<div class="code">Some example of how to use it over here</div>
</div>
<div class="Break-point"></div>
<div class="showing">
<h3>set_render_engine_cycles</h3>
<p>This just sets the render engine to Cycles</p>
<div class="code">set_render_engine_cycles()</div>
</div>
<div class="Break-point"></div>
<div class="showing">
<h3>set_render_engine_eevee</h3>
<p>This just sets the render engine to Eevee</p>
<div class="code">set_render_engine_Eevee()</div>
</div>
<div class="Break-point"></div>
<div class="showing">
<h3>set_render_engine_workbench</h3>
<p>This just sets the render engine to workbench</p>
<div class="code">set_render_engine_workbench)</div>
</div>
<div class="Break-point"></div>
<!-- Render -->
<div class="showing">
<h3>render_image</h3>
<p>Renders image, doesn't open window</p>
<div class="code">render_image()</div>
</div>
<div class="Break-point"></div>
<div class="showing">
<h3>render_animation</h3>
<p>Renders animation, doesn't open window</p>
<div class="code">render_animation()</div>
</div>
<div class="Break-point"></div>
<div class="showing">
<h3>set_render_resolution</h3>
<p>Sets render resolution, use x, and y sizes</p>
<div class="code">set_render_resolution(1920, 1080)</div>
</div>
<div class="Break-point"></div>
<div class="showing">
<h3>get_render_resolution</h3>
<p>Sets render resolution</p>
<div class="code">get_render_resolution()</div>
</div>
<div class="Break-point"></div>
<div class="showing">
<h3>get_render_resolution</h3>
<p>This is broken, currently we cannot acess this information so for now we will leave it</p>
<div class="code">get_render_resolution()</div>
</div>
<div class="Break-point"></div>