Here is a pack of 3 Phaser 3 text effects that may be useful in your games.<\/p>\n
http:\/\/phasergames.com\/phaser\/demos\/texteffects\/typewriter.html<\/a><\/p>\n Speed – the lower the number, the faster the text will display.<\/p>\n <\/p>\n http:\/\/phasergames.com\/phaser\/demos\/texteffects\/scrollText.html<\/a><\/p>\n Speed – lower is faster<\/p>\n <\/p>\n","protected":false},"excerpt":{"rendered":" Phaser 3 Text Effects Pack 1 Here is a pack of 3 Phaser 3 text effects that may be useful in your games. TypeWriter Demo http:\/\/phasergames.com\/phaser\/demos\/texteffects\/typewriter.html Usage var myText = “When in the Course of human events it becomes necessary for one people to dissolve the political bands which have connected them with another and […]<\/p>\n","protected":false},"author":1,"featured_media":6075,"template":"","meta":{"site-sidebar-layout":"default","site-content-layout":"default","ast-site-content-layout":"","site-content-style":"default","site-sidebar-style":"default","ast-global-header-display":"","ast-banner-title-visibility":"","ast-main-header-display":"","ast-hfb-above-header-display":"","ast-hfb-below-header-display":"","ast-hfb-mobile-header-display":"","site-post-title":"","ast-breadcrumbs-content":"","ast-featured-img":"","footer-sml-layout":"","theme-transparent-header-meta":"default","adv-header-id-meta":"","stick-header-meta":"","header-above-stick-meta":"","header-main-stick-meta":"","header-below-stick-meta":"","astra-migrate-meta-layouts":"default","ast-page-background-enabled":"default","ast-page-background-meta":{"desktop":{"background-color":"","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"tablet":{"background-color":"","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"mobile":{"background-color":"","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""}},"ast-content-background-meta":{"desktop":{"background-color":"var(--ast-global-color-5)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"tablet":{"background-color":"var(--ast-global-color-5)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"mobile":{"background-color":"var(--ast-global-color-5)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""}},"edd_variable_prices":[],"_edd_bundled_products":["0"],"_edd_button_behavior":["add_to_cart"],"footnotes":""},"edd-categories":[43,65],"edd-tags":[],"class_list":["post-6067","download","type-download","status-publish","has-post-thumbnail","hentry","download_category-effects","download_category-premium","edd-download","edd-download-cat-effects","edd-download-cat-premium"],"yoast_head":"\nUsage<\/h3>\n
var myText = \"When in the Course of human events it becomes necessary for one people to dissolve the political bands which have connected them with another and to assume among the powers of the earth, the separate and equal station to which the Laws of Nature and of Nature\/'s God entitle them, a decent respect to the opinions of mankind requires that they should declare the causes which impel them to the separation.\\nWe hold these truths to be self-evident, that all men are created equal, that they are endowed by their Creator with certain unalienable Rights, that among these are Life, Liberty and the pursuit of Happiness. \u2014 That to secure these rights, Governments are instituted among Men, deriving their just powers from the consent of the governed, \u2014 That whenever any Form of Government becomes destructive of these ends, it is the Right of the People to alter or to abolish it, and to institute new Government, laying its foundation on such principles and organizing its powers in such form, as to them shall seem most likely to effect their Safety and Happiness.\";\r\n var style = {\r\n 'color': 'white',\r\n 'fontSize': '24px',\r\n 'wordWrap': {\r\n 'width': this.sys.game.config.width\r\n }\r\n }\r\n this.tw = new TypeWriter({\r\n 'scene': this,\r\n 'text': myText,\r\n 'speed': .5,\r\n 'style': style\r\n });<\/pre>\n
Scrolling Text<\/h2>\n
Demo<\/h3>\n
Usage<\/h3>\n
var myText = \"The scrolling text goes here.\";\r\n var style = {\r\n fontFamily: \"Arial Black\", fontSize: 26, color: \"#ffffff\"\r\n }\r\n this.scrollText = new ScrollText({\r\n 'scene': this,\r\n 'text': myText,\r\n 'speed': 10,\r\n 'style': style,\r\n 'y':200\r\n });\r\n this.scrollText.getText().setStroke('#2980b9', 6);<\/pre>\n
Zoom Text<\/h2>\n
Demo
\nhttp:\/\/phasergames.com\/phaser\/demos\/texteffects\/zoomText.html<\/a><\/h3>\nUsage<\/h3>\n
var myText = \"When in the Course of human events it becomes necessary for one people to dissolve the political bands which have connected them with another and to assume among the powers of the earth, the separate and equal station to which the Laws of Nature and of Nature's God entitle them, a decent respect to the opinions of mankind requires that they should declare the causes which impel them to the separation.\\nWe hold these truths to be self-evident, that all men are created equal, that they are endowed by their Creator with certain unalienable Rights, that among these are Life, Liberty and the pursuit of Happiness.\";\r\n var style = {\r\n 'color': 'white',\r\n 'fontSize': '24px',\r\n 'wordWrap': {\r\n 'width': this.sys.game.config.width\r\n }\r\n }\r\n this.zoomText = new ZoomText({\r\n 'scene': this,\r\n 'text': myText,\r\n 'speed':1,\r\n 'style': style\r\n });<\/pre>\n