Skip to content

Commit

Permalink
Fix formatting and light instance rendering
Browse files Browse the repository at this point in the history
  • Loading branch information
4ian committed Sep 13, 2024
1 parent 6e4e5f6 commit d69657f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Extensions/Lighting/JsExtension.js
Original file line number Diff line number Diff line change
Expand Up @@ -296,7 +296,7 @@ module.exports = {

let radiusGraphicsDirty = false;

const radius = parseFloat(
let radius = parseFloat(
this._associatedObjectConfiguration
.getProperties()
.get('radius')
Expand Down
4 changes: 3 additions & 1 deletion newIDE/app/src/EffectsList/CompactEffectPropertiesEditor.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,9 @@ import { type ResourceManagementProps } from '../ResourcesList/ResourceSource';
import CompactPropertiesEditor from '../CompactPropertiesEditor';

const noRefreshOfAllFields = () => {
console.warn("An effect tried to refresh all fields, but the editor doesn't support it.");
console.warn(
"An effect tried to refresh all fields, but the editor doesn't support it."
);
};

export const CompactEffectPropertiesEditor = ({
Expand Down

0 comments on commit d69657f

Please sign in to comment.