From 362f91160b243453578633e3f9af67ce40179d8c Mon Sep 17 00:00:00 2001 From: Ruben Beltran del Rio Date: Tue, 7 May 2024 22:37:27 +0200 Subject: Make 3D --- lib/components/radius.js | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 lib/components/radius.js (limited to 'lib/components/radius.js') diff --git a/lib/components/radius.js b/lib/components/radius.js new file mode 100644 index 0000000..2aa29a8 --- /dev/null +++ b/lib/components/radius.js @@ -0,0 +1,9 @@ +import { Component } from '@serpentity/serpentity'; + +export default class Radius extends Component { + constructor(config) { + + super(config); + this.radius = this.radius || 5; + } +}; -- cgit