Skip to content

Commit

Permalink
README.md updated
Browse files Browse the repository at this point in the history
  • Loading branch information
fabiof17 committed Jun 15, 2018
1 parent b6b370c commit 152683f
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -465,7 +465,7 @@ If you want a particular folder only you can use http://kinolien.github.io/gitzi
- <img src='/Relight/Z2Normal/Z2Normal.png' width='32'> **[Z2Normal](/Relight/Z2Normal/README.md)** : Generate a Normal Pass from a Z pass

### SB
- <img src='/SB/sb_lumakey/sb_lumakey.png' width='24'> **[sb_lumakey](/SB/sb_lumakey/README.md)** : This PyPlug will perform a luminance key of your footage, based on a chosen color space.
- <img src='/SB/sb_LumaKey/sb_LumaKey.png' width='24'> **[sb_LumaKey](/SB/sb_LumaKey/README.md)** : This PyPlug will perform a luminance key of your footage, based on a chosen color space.

- <img src='/SB/sb_MatteEdge/sb_MatteEdge.png' width='24'> **[sb_MatteEdge](/SB/sb_MatteEdge/README.md)** : This PyPlug creates an edge matte with control of both the outer and inner radius.

Expand Down
2 changes: 1 addition & 1 deletion SB/sb_lumakey/README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
# sb_lumakey
# sb_LumaKey

This PyPlug will perform a luminance key of your footage, based on a chosen color space.
14 changes: 7 additions & 7 deletions SB/sb_lumakey/sb_lumakey.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# DO NOT EDIT THIS FILE
# This file was automatically generated by Natron PyPlug exporter version 10.

# Hand-written code should be added in a separate file named sb_lumakeyExt.py
# Hand-written code should be added in a separate file named sb_LumaKeyExt.py
# See http://natron.readthedocs.org/en/master/devel/groups.html#adding-hand-written-code-callbacks-etc
# Note that Viewers are never exported

Expand All @@ -11,21 +11,21 @@

# Try to import the extensions file where callbacks and hand-written code should be located.
try:
from sb_lumakeyExt import *
from sb_LumaKeyExt import *
except ImportError:
pass

def getPluginID():
return "natron.community.plugins.sb_lumakey"
return "natron.community.plugins.sb_LumaKey"

def getLabel():
return "sb_lumakey"
return "sb_LumaKey"

def getVersion():
return 1

def getIconPath():
return "sb_lumakey.png"
return "sb_LumaKey.png"

def getGrouping():
return "Community/SB"
Expand Down Expand Up @@ -401,7 +401,7 @@ def createInstance(app,group):
lastNode.sep102 = param
del param

param = lastNode.createSeparatorParam("NAME", "sb_lumakey v1.0")
param = lastNode.createSeparatorParam("NAME", "sb_LumaKey v1.0")

# Add the param to the page
lastNode.Credits.addParam(param)
Expand Down Expand Up @@ -1005,7 +1005,7 @@ def createInstance(app,group):
del param

try:
extModule = sys.modules["sb_lumakeyExt"]
extModule = sys.modules["sb_LumaKeyExt"]
except KeyError:
extModule = None
if extModule is not None and hasattr(extModule ,"createInstanceExt") and hasattr(extModule.createInstanceExt,"__call__"):
Expand Down
4 changes: 2 additions & 2 deletions SB/sb_lumakey/sb_lumakey.xml
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
<?xml version="1.0" encoding="UTF-8"?>
<Package>
<DisplayName>sb_lumakey</DisplayName>
<DisplayName>sb_LumaKey</DisplayName>
<Description>This PyPlug will perform a luminance key of your footage, based on a chosen color space.</Description>
<Version>1.0</Version>
<ReleaseDate>@DATE@</ReleaseDate>
<Name>natron.community.plugins.sb_lumakey</Name>
<Name>natron.community.plugins.sb_LumaKey</Name>
<Default>script</Default>
<Script>installscript.qs</Script>
</Package>

0 comments on commit 152683f

Please sign in to comment.