mirror of
https://github.com/Foundryborne/daggerheart.git
synced 2026-01-17 23:49:02 +01:00
Hard coded template; no value applied/saved
This commit is contained in:
parent
c445b2cbe0
commit
743eeff593
7 changed files with 85 additions and 24 deletions
15
module/data/scene/SceneConfig.mjs
Normal file
15
module/data/scene/SceneConfig.mjs
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
|
||||
|
||||
export default class DhSceneConfig extends foundry.abstract.DataModel {
|
||||
static defineSchema() {
|
||||
const fields = foundry.data.fields;
|
||||
|
||||
return {
|
||||
...super.defineSchema(),
|
||||
rangeMeasurementSettingsOverrideField: new fields.BooleanField({
|
||||
initial: false,
|
||||
label: "Override Global Range Measurement Settings"
|
||||
})
|
||||
}
|
||||
}
|
||||
}
|
||||
1
module/data/scene/_module.mjs
Normal file
1
module/data/scene/_module.mjs
Normal file
|
|
@ -0,0 +1 @@
|
|||
export { default as DhSceneConfig } from './SceneConfig.mjs';
|
||||
Loading…
Add table
Add a link
Reference in a new issue