Hi, jcanabal. Could you allow me to create and publish VRChat Gimick of Tarot card with your assets for free in my Booth.pm?
kai00
7
Posts
2
Topics
A member registered Nov 09, 2020
Recent community posts
Ct.js game engine (old page! Open for the new one) community · Replied to GoodBad in How to give object multi depth
Ct.js game engine (old page! Open for the new one) community · Posted in How to give object multi depth
Ct.js game engine (old page! Open for the new one) community · Created a new topic How to give object multi depth
Ct.js game engine (old page! Open for the new one) community · Replied to kai00 in How to follow mouser cursor.
I realized what I want with the code below
On Create
this.speed = 10 this.direction = 0 ct.camera.follow = this ct.camera.followY = false ct.camera.shiftX = 250
On Step
if ( ct.actions.Poof.down ){
this.gravity = 2
this.addSpeed(ct.delta * 4, 90)
}
if (ct.mouse.x < 10){
this.x = ct.mouse.x
}
if ( ct.mouse.y > 0 && ct.mouse.y < 1920){
this.y = ct.mouse.y
}
this.move();
Ct.js game engine (old page! Open for the new one) community · Replied to Cosmo Myzrail Gorynych in How to follow mouser cursor.
Ct.js game engine (old page! Open for the new one) community · Created a new topic How to follow mouser cursor.