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
-- =================================================================== | |
-- RESPONSIVE OBJECT | |
-- =================================================================== | |
-- Version 1.0.0 | |
-- | |
-- little module/API for furniture and decorations to respond | |
-- if a player enters it proximity radius and trigger animations | |
-- | |
-- Config Parameters: | |
-- see sample file |
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
/** | |
* ========================================================================= | |
* Hexagon | |
* ========================================================================= | |
* simple hexagon class for processing.js | |
*/ | |
class Hexagon | |
{ | |
// center of the hexagon | |
float centerX; |
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
<!-- | |
=========================================================================== | |
Some ANT Snippets combine, minify and JS and CSS files. | |
=========================================================================== | |
For deploying homepages with ANT. | |
Properties: | |
dir.src=your source folder | |
dir.deploy=your deploy folder | |
--> |
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
<!-- | |
=========================================================================== | |
ANT News Bot | |
=========================================================================== | |
Sample files are provided below. | |
Folder structure: | |
/ | |
/ant | |
/ant/ant-contrib (external ant lib) |
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
/** | |
* to includes script/css files only if there are not loaded yet. | |
* | |
* @param url url of the resource | |
* @param type js or css (empty default is js) | |
*/ | |
function include_once(url,type) | |
{ | |
var tagname; | |
var urlattr; |