Commit e2c7196e authored by David Komer's avatar David Komer Committed by Wouter van Oortmerssen

tutorial docs (#4492)

parent 61fe2a4f
...@@ -840,7 +840,7 @@ for the `path` field above: ...@@ -840,7 +840,7 @@ for the `path` field above:
</div> </div>
<div class="language-python"> <div class="language-python">
~~~{.py} ~~~{.py}
MyGame.Example.Monster.MonsterStartPathVector(builder, 2) MyGame.Sample.Monster.MonsterStartPathVector(builder, 2)
MyGame.Sample.Vec3.CreateVec3(builder, 1.0, 2.0, 3.0) MyGame.Sample.Vec3.CreateVec3(builder, 1.0, 2.0, 3.0)
MyGame.Sample.Vec3.CreateVec3(builder, 4.0, 5.0, 6.0) MyGame.Sample.Vec3.CreateVec3(builder, 4.0, 5.0, 6.0)
path = builder.EndVector(2) path = builder.EndVector(2)
...@@ -848,7 +848,7 @@ for the `path` field above: ...@@ -848,7 +848,7 @@ for the `path` field above:
</div> </div>
<div class="language-javascript"> <div class="language-javascript">
~~~{.js} ~~~{.js}
MyGame.Example.Monster.startPathVector(builder, 2); MyGame.Sample.Monster.startPathVector(builder, 2);
MyGame.Sample.Vec3.createVec3(builder, 1.0, 2.0, 3.0); MyGame.Sample.Vec3.createVec3(builder, 1.0, 2.0, 3.0);
MyGame.Sample.Vec3.createVec3(builder, 4.0, 5.0, 6.0); MyGame.Sample.Vec3.createVec3(builder, 4.0, 5.0, 6.0);
var path = builder.endVector(); var path = builder.endVector();
...@@ -1166,7 +1166,7 @@ appropriate `finish` method. ...@@ -1166,7 +1166,7 @@ appropriate `finish` method.
<div class="language-javascript"> <div class="language-javascript">
~~~{.js} ~~~{.js}
// Call `finish()` to instruct the builder that this monster is complete. // Call `finish()` to instruct the builder that this monster is complete.
builder.finish(orc); // You could also call `MyGame.Example.Monster.finishMonsterBuffer(builder, builder.finish(orc); // You could also call `MyGame.Sample.Monster.finishMonsterBuffer(builder,
// orc);`. // orc);`.
~~~ ~~~
</div> </div>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment