| 1639 | } |
| 1640 | |
| 1641 | void ScriptReferenceDisplay::LoadText() |
| 1642 | { |
| 1643 | File file(ofToResourcePath("scripting_reference.txt").c_str()); |
| 1644 | if (file.existsAsFile()) |
| 1645 | { |
| 1646 | std::string text = file.loadFileAsString().toStdString(); |
| 1647 | ofStringReplace(text, "\r", ""); |
| 1648 | mText = ofSplitString(text, "\n"); |
| 1649 | } |
| 1650 | |
| 1651 | mMaxScrollAmount = (int)mText.size() * 14; |
| 1652 | } |
| 1653 | |
| 1654 | void ScriptReferenceDisplay::DrawModule() |
| 1655 | { |
nothing calls this directly
no test coverage detected