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
LoadHTML(@" | |
<html> | |
<body style='font-family: Helvetica, Arial, sans-serif;'> | |
<h1>Awesomium Rocks!</h1> | |
<p>This web-page was loaded with HTML directly from within Unity3D.</p> | |
<h2>Environment Info</h2> | |
<dl> | |
<dt>Unity Version</dt><dd id='stat1'></dd> | |
<dt>Unity Platform</dt><dd id='stat2'></dd> |
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
// .h file | |
#pragma once | |
#include "Ship_Component_Interface.generated.h" | |
/** | |
* | |
*/ | |
UINTERFACE(MinimalAPI) |
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
// .h file | |
#pragma once | |
#include "Ship_Component_Interface.generated.h" | |
/** | |
* | |
*/ | |
UINTERFACE(MinimalAPI) | |
class UShip_Component_Interface : public UInterface |
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
{ | |
"mods": [ | |
{ | |
"name": "base", | |
"enabled": "true" | |
}, | |
{ | |
"name": "5dim_automatization", | |
"enabled": "true" | |
}, |
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
/*--- waitForKeyElements(): A utility function, for Greasemonkey scripts, | |
that detects and handles AJAXed content. | |
Usage example: | |
waitForKeyElements ( | |
"div.comments" | |
, commentCallbackFunction | |
); |