aboutsummaryrefslogtreecommitdiff
path: root/docs/api_docs/files/pagehlapi.html
diff options
context:
space:
mode:
authorBryan Galdrikian <[email protected]>2017-10-24 15:25:02 -0700
committerBryan Galdrikian <[email protected]>2017-10-24 15:25:02 -0700
commitb0c11962f6012430da3bcaa2727288046b33d648 (patch)
treecf13338fa4fd7072badf64f751f94abeeb437003 /docs/api_docs/files/pagehlapi.html
parentlinux build fix - all configs (diff)
downloadblast-b0c11962f6012430da3bcaa2727288046b33d648.tar.xz
blast-b0c11962f6012430da3bcaa2727288046b33d648.zip
Changes for 1.1.1
See README.md
Diffstat (limited to 'docs/api_docs/files/pagehlapi.html')
-rw-r--r--docs/api_docs/files/pagehlapi.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/api_docs/files/pagehlapi.html b/docs/api_docs/files/pagehlapi.html
index 4c1045f..d0a31d5 100644
--- a/docs/api_docs/files/pagehlapi.html
+++ b/docs/api_docs/files/pagehlapi.html
@@ -210,7 +210,7 @@ Examples of the three TkActor damage methods are given below.<p>
<br>
<h3><a class="anchor" name="multiple_damage">
Multiple Damage Descriptors using NvBlastProgramParams</a></h3>
-<b>N.B. - with this method of damage, the lifetime of the <a class="el" href="struct_nv_blast_program_params.html">NvBlastProgramParams</a> <em>must</em> extend at least until the TkGroup::endProcess call for the actor.</b><p>
+<b>N.B. - with this method of damage, the lifetime of the NvBlastProgramParams <em>must</em> extend at least until the TkGroup::endProcess call for the actor.</b><p>
<div class="fragment"><pre class="fragment"><a class="code" href="struct_nv_blast_damage_program.html">NvBlastDamageProgram</a> program =
{
myGraphShaderFunction, <span class="comment">// A function with the NvBlastGraphShaderFunction signature</span>
@@ -242,7 +242,7 @@ material.minDamageThreshold = 0.1f;
material.maxDamageThreshold = 0.8f;
<span class="comment">// Set the damage params struct</span>
-<a class="code" href="struct_nv_blast_program_params.html">NvBlastProgramParams</a> params = { damageDescs, 2, &amp;material };
+NvBlastProgramParams params = { damageDescs, 2, &amp;material };
<span class="comment">// Apply damage</span>
actor-&gt;damage(program, &amp;params); <span class="comment">// params must be kept around until TkGroup::endProcess is called!</span>