npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

charactercontroller

v3.0.2

Published

A first person character controller for the Three.js graphics library

Downloads

6

Readme

charactercontroller

A first person character controller for the Three.js graphics library

GitHub Lint Workflow Status GitHub Publish Workflow Status

npm bundle size npm NPM

Demo

Installation

npm install charactercontroller

Usage

import CharacterController from "charactercontroller";

// Scene & renderer initialisation...

const controller = new CharacterController(scene, options);

function animate() {
	requestAnimationFrame(animate);
	// ...
	controller.update();
	renderer.render(scene, controller.camera);
}
  • scene

    An instance of THREE.Scene that the Character Controller is to become a child of.

  • options

    An object defining options for the Character Controller. The valid fields are described below

Constructor Options

  • walkSpeed

    The rate at which the controller is translated in the scene in response to player inputs, when the sprint key (left shift) is not being pressed.

    • Default: 5
  • sprintSpeed

    The rate at which the controller is translated in the scene in response to player inputs, when the sprint key (left shift) is being pressed.

    • Default: 10
  • floorDistance

    How far above a surface the controller can get before stopping falling.

    Could be interpreted as the height of the player.

    • Default: 1
  • gravity

    How quickly the controller is pulled down when there is no surface beneath it.

    • Default: -9.81
  • jumpPower

    With how much force the controller is projected upwards when a jump is initiated.

    • Default: 5
  • sensitivity

    • x

      How much the camera should move in response to the player moving the mouse left and right.

      • Default: 0.1
    • y

      How much the camera should move in response to the player moving the mouse up and down.

      • Default: 0.1
  • lookLimit

    • down

      The angle in degrees that the camera's x rotation should be clamped to when looking down

      • Default: 0
    • up

      The angle in degrees that the camera's x rotation should be clamped to when looking up

      • Default: 180
  • cameraFov

    The field of view of the camera attatched to the character controller.

    • Default: 75
  • inputMappings

    The KeyboardEvent.codes that control the character controller. An array of codes are used to support multiple keys controlling the same actions; primarily for accessability reasons.

    • scalar

      Note

      The scalar property defines axes that can take on any value within a range. There are two axes that control the planar movement of the character controller; horizontal and vertical, named horizontalAxis and verticalAxis respectively. These both take an array of input maps as values. The format of the input maps required in arrays on scalar axes is as follows;

      { inputs: KeyboardEvent.code[], value: number }

      Where value is the magnitude of the axis when a key in inputs is being pressed.

      • horizontalAxis
        • Default:
          { inputs: ["KeyA", "ArrowLeft"], value: -1 },
          { inputs: ["KeyD", "ArrowRight"], value: 1 },
      • verticalAxis
        • Default:
          { inputs: ["KeyS", "ArrowDown"], value: -1 },
          { inputs: ["KeyW", "ArrowUp"], value: 1 },
    • discrete

      Note

      The discrete property defines single-fire actions that occur at a specific point in time. These inputs differ from the ones defined under scalar as they describe events that happen once at a time, rather than continuously over time. The format of input maps required here is simply an array of KeyboardEvent.codes.

      • jump
        • Default: ["Space"]
      • sprint
        • Default: ["ShiftLeft", "ShiftRight"],

    Note

    The default inputMappings object is shown below;

    inputMappings = {
    	scalar: {
    		horizontalAxis: [
    			{ inputs: ["KeyA", "ArrowLeft"], value: -1 },
    			{ inputs: ["KeyD", "ArrowRight"], value: 1 },
    		],
    		verticalAxis: [
    			{ inputs: ["KeyS", "ArrowDown"], value: -1 },
    			{ inputs: ["KeyW", "ArrowUp"], value: 1 },
    		],
    	},
    	discrete: {
    		jump: ["Space"],
    		sprint: ["ShiftLeft", "ShiftRight"],
    	},
    },