This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
TODO |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/**************************************************************************** | |
Copyright (c) 2013-2015 Laurent Zubiaur. | |
http://voodoocactus.com | |
Permission is hereby granted, free of charge, to any person obtaining a copy | |
of this software and associated documentation files (the "Software"), to deal | |
in the Software without restriction, including without limitation the rights | |
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | |
copies of the Software, and to permit persons to whom the Software is |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python | |
# -*- coding: latin-1 -*- | |
""" | |
svgexport.py - Batch export for Inkscape - Laurent Zubiaur | |
description: | |
Python script that can be used to automate batch exports of Inkscape objects by providing their id (set in the Object Properties dialog). | |
Also useful to batch export with a specific dpi (only available for individual object export in GUI mode). | |
For all available inkscape command line options see http://inkscape.org/doc/inkscape-man.html. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--[[ | |
Why this package? | |
Cocos2d-x CCNotificationCenter is limited to one lua function callback (observer) per target (CCObject). | |
This simple Lua script wraps CCNotificationCenter and allows code like: | |
addObserver(foo,'eventname') | |
addObserver(foo2,'eventname') | |
]]-- | |
-- The NotificationCenter (nc) table | |
local nc = { |