Difference between revisions of "Sheet Editor"
From Roll20 Wiki
Andreas J. (Talk | contribs) m |
Andreas J. (Talk | contribs) m (→Access Sheet Editor) |
||
Line 28: | Line 28: | ||
:::'''6.''' Scroll down and press '''"Save Changes"'''. | :::'''6.''' Scroll down and press '''"Save Changes"'''. | ||
− | [[File:Legacy-Sanitization-checkbox.png|thumbnail|800px|center|'''Step. | + | [[File:Legacy-Sanitization-checkbox.png|thumbnail|800px|center|'''Step. 5''' Toggle checkbox if code is [[Legacy Character Sheet]]. ]] |
<br clear=all> | <br clear=all> | ||
+ | |||
===Editor Tabs=== | ===Editor Tabs=== | ||
[[File:Sheet-editor.gif|right|700px|thumbnail|Showcasing the Sheet Editor filed out using the code for '''Band of Blades''', and showing in the [[#preview|preview]] a indicative look of the sheet. The Preview doesn't fully reflect how it actually looks inside the game.]] | [[File:Sheet-editor.gif|right|700px|thumbnail|Showcasing the Sheet Editor filed out using the code for '''Band of Blades''', and showing in the [[#preview|preview]] a indicative look of the sheet. The Preview doesn't fully reflect how it actually looks inside the game.]] |
Latest revision as of 12:55, 25 March 2022
Page Updated: 2022-03-25 |
This page is about a Roll20 feature exclusive to Pro-subscribers (and often to players in a Game created by a Pro-subscriber). If you'd like to use this feature, consider upgrading your account. |
Character Sheet Development
Getting Started
- Using Custom Sheets
- Building Sheets
(Main Page) - Glossary
- Code Restrictions
- Best Practice
- Common Mistakes
- Tutorials
- Examples, Templates
- Pattern Libraries
- HTML & storing data
- CSS & Styling
General
- Updates & Changelog
- Known Bugs
- Character Sheet Enhancement(CSE)
- Custom Roll Parsing
- Legacy Sheet(LCS)
- Beacon SDK
Reference
- Buttons
- Repeating Sections
- Sheetworkers
- Roll Templates
- sheet.json
- Translation
- Auto-Calc
- Advanced
- All SheetDev Pages
Tools & Tips
- Sheet Sandbox
- Sheet Editor
- Sheet Dev Tools
- Sheet Author Tips
Other
It can be accessed for a game from the Game Settings-page, if you change the Character Sheet Template to "Custom".
If you intent to test, develop or otherwise work on the character sheet, using Custom Sheet Sandbox for the development is a smart choice, as it's quicker to update. The Sandboxes drawback is that you can't invite other people to it.
Contents |
[edit] Access Sheet Editor
To edit a custom character sheet for an existing game:
1. Go to a Campaign's Details Page/Main page.
2. Click the Settings-button, and select Games Settings.
- 3. On the Game settings page, you select "Custom" from the Character Sheet Template menu.
- 4. Copy & paste the html, css, and possible translation files to their respective Editor tab(more below).
- 5. If you want to use any character sheet code created prior to March 2021(and some later creations), check the box for Legacy Sanitization. If you leave it unchecked, you can use sheets designed by the newer Character Sheet Enhancement(CSE)-standard.
If the sheet looks all wrong in your game, reverting the checkbox to the opposite should make it work as intended.
- 6. Scroll down and press "Save Changes".
[edit] Editor Tabs
The editor (shown above) has four tabs: HTML Layout, CSS Styling, Translation, and Preview.
You copy your HTML and CSS code to their respective pages, and if the sheet have translation files, you copy the content of the appropriate language version. If a translation file ins't provided and the sheet used them, it will show red text and the name of the language tag for each section.
[edit] HTML Layout
Here you save the full content of the .html
-file for a character sheet. This is the absolute essential part for the sheet to save anything.
[edit] CSS Styling
Here you save the full content of the .css
-file for a character sheet. If left out, all the styling and visual adjustments is gone, and most sheet would stop working to some degree almost every sheet,except in the rare cases of extremely simplistic character sheets.
[edit] Translation
If the sheet contains sheet translation code(i18n
attributes) and have an associated translation.json
file, it's content would be copied here.
translation.json
is missing sections for those attributes.
[edit] Preview
Warning: The preview panel does not have all the behavior of an actual roll20 instance. Sheetworkers, repeating sections, and any features that rely on accessing any sheet attribute values will not work correctly in the Preview. |
The preview panel updates in real-time whenever you change the HTML
, CSS
or "Translation" of your sheet, to show you an approximation of what sheet would look like in-game. It's useful for quickly checking superficial change while you're editing, but to be sure of the actual end-result, you need to enter the game and open the sheet itself.
The Preview panel applies all the same security precautions and filtering as the main Roll20 application. Be sure to right-click and Inspect Element if you are seeing strange behavior (e.g. your styles aren't being applied correctly) -- it may be that there is a security filter that is changing the name of a class or something similar.
If you make any changes in the character sheet editor while in the game, you must save your changes and refresh the active Roll20 game. In addition, if the character sheet contains <rolltemplate>
, the code for it will be seen unprocessed in the preview window. It's recommended that roll templates are placed at the end of the sheet's code, so they don't obscure the sheet's visuals when using the preview panel.
[edit] Related Pages
- Roll20 Sheet Repository - source code of all the community sheets
- Custom Sheet Sandbox The better method for editing/testing custom character sheet code
- Building/Editing Character Sheets - Documentation starting point
- Common Sheet Mistakes
- Sheet Author Tips - some more in-depth tips
- Andreas Guide to Sheet Development