Difference between revisions of "AddToPic()"

From SCI Wiki
Jump to navigationJump to search
(Created page with "<div align="center" style="font-size: 22pt">AddToPic (Kernel)</div> ==<br /> Description == <blockquote> AddToPic (Kernel)<ref>From Phil Fortier's SCI Companion Documentati...")
 
m (Andrew Branscom moved page AddToPic to AddToPic())
 
(One intermediate revision by the same user not shown)
Line 37: Line 37:
 
[[Category:References]]
 
[[Category:References]]
 
[[Category:SCI Documentation]]
 
[[Category:SCI Documentation]]
[[Category:SCI Kernel Functions]]
+
[[Category:Kernel Functions]]
 
[[Category:Scripting]]
 
[[Category:Scripting]]

Latest revision as of 17:00, 12 April 2018

AddToPic (Kernel)



Description

AddToPic (Kernel)[1] draws the views contained in the viewList directly onto the picture as if they were originally part of the picture. They will stay there until the picture is discarded.


Syntax

AddToPic(pList)


Parameters

list (k_list) – A list of object that inherit from View.


Note

In general, this should not be used. Instead, addToPic() on should be called on the individual View objects instead. It will allow keeping the proper state across game save and restore.


References

  1. From Phil Fortier's SCI Companion Documentation


Related Links