/** * * @flow */ import React from 'react'; import { connect } from 'react-redux'; // import FaFacebook from 'react-icons/lib/fa/facebook'; // import FaTwitter from 'react-icons/lib/fa/twitter'; // import FaRedditAlien from 'react-icons/lib/fa/reddit-alien'; import Modal from './Modal'; import { social, MIN_COOLDOWN, BLANK_COOLDOWN } from '../core/constants'; import type { State } from '../reducers'; const linkStyle = { textDecoration: 'none', color: '#428bca', }; const titleStyle = { color: '#4f545c', marginLeft: 0, marginRight: 10, overflow: 'hidden', wordWrap: 'break-word', lineHeight: '24px', fontSize: 16, fontWeight: 500, // marginTop: 0, marginBottom: 0, }; const textStyle = { color: 'hsla(218, 5%, 47%, .6)', fontSize: 14, fontWeight: 500, position: 'relative', textAlign: 'inherit', float: 'none', margin: 0, padding: 0, lineHeight: 'normal', }; const HelpModal = ({ center }) => (

Place color pixels on a large canvas with other players online! Cooldown is {(BLANK_COOLDOWN / 1000) | 0} seconds for fresh pixels and {(MIN_COOLDOWN / 1000) | 0}s for overwriting existing pixels! The current canvas size is from -32768 to +32768 in x and y. Higher zoomlevels take some time to update, the 3D globe gets updated at least once per day. Have fun!

Discord: pixelplanet.fun/discord

Source on github

Reddit: r/PixelPlanetFun

Image Converter: pixelplanet.fun/convert

Image Converter for 2nd Planet: pixelplanet.fun/convert2

Map Data

The bare map data that we use, together with converted OpenStreetMap tiles for orientation, can be downloaded from mega.nz here: pixelplanetmap.zip (422MB)

GIMP Palette

The Palettes for GIMP can be found here and here. Credit for the Palette of the second planet goes to starhouse.

Detected as Proxy?

If you got detected as proxy, but you are none, please send us an e-mail with your IP to pixelplanetdev@gmail.com. Don't post your IP anywhere else. We are sorry for the inconvenience.

Controls

Click a color in palette to select

Press G to toggle grid

Press C to toggle showing of pixel activity

Press q or e to zoom

Press W,A,S, D to move

Press ,,, to move

Drag mouse to move

Scroll mouse wheel to zoom

Click middle mouse button to current hovering color

Pinch to zoom (on touch devices)

Pan to move (on touch devices)

Click or tab to place a pixel

Partners: crazygames.com

This site is protected by reCAPTCHA and the Google Privacy Policy and Terms of Service apply.

); function mapStateToProps(state: State) { const { center } = state.user; return { center }; } export default connect(mapStateToProps)(HelpModal);