Skip to content
Navigation Menu
Sign in
Appearance settings
Platform
AI CODE CREATION
GitHub Copilot
Write better code with AI
GitHub Copilot app
Direct agents from issue to merge
MCP Registry
Integrate external tools
DEVELOPER WORKFLOWS
Actions
Automate any workflow
Codespaces
Instant dev environments
Issues
Plan and track work
Code Review
Manage code changes
Code Quality
Enforce quality at merge
APPLICATION SECURITY
GitHub Advanced Security
Find and fix vulnerabilities
Code security
Secure your code as you build
Secret protection
Stop leaks before they start
EXPLORE
Why GitHub
Documentation
Blog
Changelog
Marketplace
View all features
Solutions
BY COMPANY SIZE
Enterprises
Small and medium teams
Startups
Nonprofits
BY USE CASE
App Modernization
DevSecOps
DevOps
CI/CD
View all use cases
BY INDUSTRY
Healthcare
Financial services
Manufacturing
Government
View all industries
View all solutions
Resources
EXPLORE BY TOPIC
AI
Software Development
DevOps
Security
View all topics
EXPLORE BY TYPE
Customer stories
Events & webinars
Ebooks & reports
Business insights
GitHub Skills
SUPPORT & SERVICES
Documentation
Customer support
Community forum
Trust center
Partners
View all resources
Open Source
COMMUNITY
GitHub Sponsors
Fund open source developers
PROGRAMS
Security Lab
Maintainer Community
GitHub Stars
Archive Program
REPOSITORIES
Topics
Trending
Collections
Enterprise
ENTERPRISE SOLUTIONS
Enterprise platform
AI-powered developer platform
AVAILABLE ADD-ONS
GitHub Advanced Security
Enterprise-grade security features
Copilot for Business
Enterprise-grade AI features
Premium Support
Enterprise-grade 24/7 support
Pricing
Search
/
Sign in
Sign up
Appearance settings
You signed in with another tab or window.
Reload
to refresh your session.
You signed out in another tab or window.
Reload
to refresh your session.
You switched accounts on another tab or window.
Reload
to refresh your session.
Dismiss alert
{{ message }}
SouCoder
/
phaser
Public
forked from
phaserjs/phaser
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Security and quality
Insights
Commits
Breadcrumbs
History for
phaser
src
gameobjects
on
dev
User selector
All users
Datepicker
All time
Commit history
Commits on Jul 31, 2015
Text with tints applied wouldn't update properly in Canvas mode.
photonstorm
committed
9362a2b
View commit details
Copy full SHA for 9362a2b
View code at this point
Browse repository at this point
Merge pull request #1950 from jdnichollsc/dev
Show description for cbc68ab
photonstorm
committed
cbc68ab
View commit details
Copy full SHA for cbc68ab
View code at this point
Browse repository at this point
BitmapText.smoothed is a new boolean property that allows you to set texture smoothing on a bitmap font or not. By default smoothing is always on, but you can turn it off which helps for bitmap fon…
Show description for d23e5d6
photonstorm
committed
d23e5d6
View commit details
Copy full SHA for d23e5d6
View code at this point
Browse repository at this point
Commits on Jul 29, 2015
2.4.2 release.
photonstorm
committed
4b22f48
View commit details
Copy full SHA for 4b22f48
View code at this point
Browse repository at this point
Commits on Jul 28, 2015
Added Text.addFontStyle and Text.addFontWeight allows you to set styles and weights font within the Text.
jdnichollsc
committed
655013d
View commit details
Copy full SHA for 655013d
View code at this point
Browse repository at this point
Commits on Jul 23, 2015
Updated to latest Creature runtimes, added to GameObjectFactory.
photonstorm
committed
9a83ddc
View commit details
Copy full SHA for 9a83ddc
View code at this point
Browse repository at this point
Commits on Jul 22, 2015
Phaser 2.4 release.
photonstorm
committed
858ad51
View commit details
Copy full SHA for 858ad51
View code at this point
Browse repository at this point
Removed BaseTextureCache requirement from BitmapData.
Show description for ffaa7d7
photonstorm
committed
ffaa7d7
View commit details
Copy full SHA for ffaa7d7
View code at this point
Browse repository at this point
Text.updateText will now check the width and height values of the Text canvas and if either are zero it sets `Text.renderable = false` to avoid throwing WebGL texture binding errors.
photonstorm
committed
915a757
View commit details
Copy full SHA for 915a757
View code at this point
Browse repository at this point
All undefined argument checks were changed from `if (typeof x === 'undefined')` to `if (x === undefined)` removing the typeof check and saving some bytes across the codebase in the process.
photonstorm
committed
f15fe67
View commit details
Copy full SHA for f15fe67
View code at this point
Browse repository at this point
Commits on Jul 21, 2015
TileSprites fixed for WebGL.
photonstorm
committed
7144b10
View commit details
Copy full SHA for 7144b10
View code at this point
Browse repository at this point
Commits on Jul 16, 2015
Merge pull request #1911 from mthurlin/patch-1
Show description for 2d3b1ee
photonstorm
committed
2d3b1ee
View commit details
Copy full SHA for 2d3b1ee
View code at this point
Browse repository at this point
Improving JSON BitmapText implementation
Feenposhleen
committed
795a7c8
View commit details
Copy full SHA for 795a7c8
View code at this point
Browse repository at this point
PIXI.BitmapText has been removed as a global array, as it is no longer used.
photonstorm
committed
9c588d9
View commit details
Copy full SHA for 9c588d9
View code at this point
Browse repository at this point
Updated AnimationParser and fixed LoadTexture calls.
photonstorm
committed
3c7293a
View commit details
Copy full SHA for 3c7293a
View code at this point
Browse repository at this point
Commits on Jul 15, 2015
* The Cache has been internally refactored considerably. Image data is now all stored in the same object, rather than being split across the PIXI global caches (such as PIXI.TextureCache and PIXI.B…
Show description for bab50d7
photonstorm
committed
bab50d7
View commit details
Copy full SHA for bab50d7
View code at this point
Browse repository at this point
Loads more Cache optimisations and tweaks.
photonstorm
committed
f52b553
View commit details
Copy full SHA for f52b553
View code at this point
Browse repository at this point
Ok let's start removing these 'typeof' checks.
photonstorm
committed
81b553d
View commit details
Copy full SHA for 81b553d
View code at this point
Browse repository at this point
hasFrameData added and some LoadTexture updates.
photonstorm
committed
d663d29
View commit details
Copy full SHA for d663d29
View code at this point
Browse repository at this point
game.make.group() did not setup parent correctly
Markus Thurlin
committed
d360384
View commit details
Copy full SHA for d360384
View code at this point
Browse repository at this point
Commits on Jul 12, 2015
Added pendingDestroy to Groups.
photonstorm
committed
4dec046
View commit details
Copy full SHA for 4dec046
View code at this point
Browse repository at this point
Commits on Jul 9, 2015
BitmapData.clear has 4 new optional parameters: x, y, width and height, that define the area to be cleared. If left undefined it works exactly the same as before and clears the entire canvas.
photonstorm
committed
5ad3698
View commit details
Copy full SHA for 5ad3698
View code at this point
Browse repository at this point
Commits on Jul 8, 2015
BitmapData.generateTexture will take a snapshot of the BitmapDatas canvas at that moment in time and convert it into an Image, which is then stored in the Phaser image Cache based on the key given.…
Show description for d027bf8
photonstorm
committed
d027bf8
View commit details
Copy full SHA for d027bf8
View code at this point
Browse repository at this point
jsdoc update.
photonstorm
committed
7253ac3
View commit details
Copy full SHA for 7253ac3
View code at this point
Browse repository at this point
All Game Objects have a new boolean property called `pendingDestroy`. If you set this to `true` then the object will automatically destroy itself in the *next* logic update, rather than immediately…
Show description for 3590272
photonstorm
committed
3590272
View commit details
Copy full SHA for 3590272
View code at this point
Browse repository at this point
Rope.segments used the wrong vertices property, causing a runtime error.
Show description for 64b1794
photonstorm
committed
64b1794
View commit details
Copy full SHA for 64b1794
View code at this point
Browse repository at this point
jshint fix.
photonstorm
committed
47e1d16
View commit details
Copy full SHA for 47e1d16
View code at this point
Browse repository at this point
Text.addColor would incorrectly color the text stroke if set (thanks @llevkin #1893
Show description for 3012e49
photonstorm
committed
3012e49
View commit details
Copy full SHA for 3012e49
View code at this point
Browse repository at this point
BitmapData.move(x, y) allows you to shift the contents of the BitmapData horizontally and vertically by the given amounts. The image wraps-around the edges of the BitmapData.
Show description for 86cac20
photonstorm
committed
86cac20
View commit details
Copy full SHA for 86cac20
View code at this point
Browse repository at this point
Text has a new style property: tabs. This allows you to specify a pixel value (or values) that allows you to space out text that contains tab characters within it. `Text.tabs` can be either an inte…
Show description for a7e1813
photonstorm
committed
a7e1813
View commit details
Copy full SHA for a7e1813
View code at this point
Browse repository at this point
Commits on Jul 7, 2015
parseList support added.
photonstorm
committed
3066f60
View commit details
Copy full SHA for 3066f60
View code at this point
Browse repository at this point
Tidied up tab handling a little.
photonstorm
committed
2e447ec
View commit details
Copy full SHA for 2e447ec
View code at this point
Browse repository at this point
Text tab support working. Now to add varying tab sizing.
photonstorm
committed
ae08b9a
View commit details
Copy full SHA for ae08b9a
View code at this point
Browse repository at this point
Updated Text resolution handling.
photonstorm
committed
b8cc4d9
View commit details
Copy full SHA for b8cc4d9
View code at this point
Browse repository at this point
Final textBounds updates.
photonstorm
committed
9548fb9
View commit details
Copy full SHA for 9548fb9
View code at this point
Browse repository at this point
Previous
Next
You can’t perform that action at this time.