From 9fe5148292e889f8b89054077528cca833465fd8 Mon Sep 17 00:00:00 2001 From: twanvl Date: Sun, 23 Sep 2007 00:55:11 +0000 Subject: [PATCH] Argument to set_alpha is 'input', not 'image' git-svn-id: svn://svn.code.sf.net/p/magicseteditor/code/trunk@748 0fc631ac-6414-0410-93d0-97cfa31319b6 --- doc/function/set_alpha.txt | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/doc/function/set_alpha.txt b/doc/function/set_alpha.txt index 96ab3734..efd6007a 100644 --- a/doc/function/set_alpha.txt +++ b/doc/function/set_alpha.txt @@ -1,7 +1,7 @@ Function: set_alpha --Usage-- -> set_alpha(image: image, alpha: transparency value) +> set_alpha(input: image, alpha: transparency value) Make an image more transparent. @@ -10,12 +10,12 @@ If @alpha@ is 1 the image stays the same, if @alpha@ is 0 the image becomes comp --Parameters-- ! Parameter Type Description -| @image@ [[type:image]] Image to make transparent. +| @input@ [[type:image]] Image to make transparent. | @alpha@ [[type:double]] Transparency factor. --Examples-- -> set_alpha(image: "image1.png", alpha: 0.5) == [[Image]] ->>> set_mask(image: "image1.png", alpha: 0.5) == "image_set_alpha.png" +> set_alpha("image1.png", alpha: 0.5) == [[Image]] +>>> set_mask("image1.png", alpha: 0.5) == "image_set_alpha.png" --See also-- | [[fun:set_mask]] Set the transparancy mask of an image.