特定商取引法に基づく表示
販売業者
fol:c:ore
運営責任者
榛澤豪
所在地
請求に従って遅滞なく開示します。
電話番号
080−9871−8067
緊急時を除いて、メールでお問い合わせください。
メールアドレス
folcore2025@gmail.com
販売価格
各商品ページに記載
商品代金以外の必要料金
送料:一律1200円
支払方法
shopifyペイメント・クレジットカード決済
支払時期
注文時にお支払いください。
商品の引渡時期
ご注文確認後、一ヶ月以内に発送いたします。
返品・交換について
返品・交換は原則として受け付けておりません。
moveto(x, y){
this.nodes[0].updateRelative(true, true);
let dist = ((x - this.end.x) ** 2 +
(y - this.end.y) ** 2) ** 0.5;
let len = Math.max(0, dist - this.speed);
for (let i = this.nodes.length - 1; i >= 0; i--) {
let node = this.nodes[i];
let ang = Math.atan2(node.y - y, node.x - x);
node.x = x + len * Math.cos(ang);
node.y = y + len * Math.sin(ang);
x = node.x; y = node.y; len = node.size;
}
update() {this.moveto(Input.mouse.x, Input.mouse.y)}