added build badge
This commit is contained in:
parent
c0ebbfcbdf
commit
1e10bfefd2
|
@ -1,3 +1,5 @@
|
||||||
|
[![Actions Status](https://github.com/coderofsalvation/xrfragment/workflows/test/badge.svg)](https://github.com/coderofsalvation/xrfragment/actions)
|
||||||
|
|
||||||
# usage
|
# usage
|
||||||
|
|
||||||
# available implementations
|
# available implementations
|
||||||
|
|
|
@ -11,7 +11,7 @@
|
||||||
1. `=` is used to split fragment key/values
|
1. `=` is used to split fragment key/values
|
||||||
1. fragment-values are urlencoded (space becomes `+` using `encodeUriComponent` e.g.)
|
1. fragment-values are urlencoded (space becomes `+` using `encodeUriComponent` e.g.)
|
||||||
1. every recognized fragment key/value-pair is added to a central map/associative array/object
|
1. every recognized fragment key/value-pair is added to a central map/associative array/object
|
||||||
[![build](https://github.com/coderofsalvation/xrfragment/workflows/test/badge.svg)](https://github.com/coderofsalvation/xrfragment)
|
[![Actions Status](https://github.com/coderofsalvation/xrfragment/workflows/test/badge.svg)](https://github.com/coderofsalvation/xrfragment/actions)
|
||||||
|
|
||||||
# XR Fragments (key/value params)
|
# XR Fragments (key/value params)
|
||||||
|
|
||||||
|
|
|
@ -2,7 +2,8 @@ package xrfragment;
|
||||||
|
|
||||||
@:expose // <- makes the class reachable from plain JavaScript
|
@:expose // <- makes the class reachable from plain JavaScript
|
||||||
@:keep // <- avoids accidental removal by dead code elimination
|
@:keep // <- avoids accidental removal by dead code elimination
|
||||||
// [![build](https://github.com/coderofsalvation/xrfragment/workflows/test/badge.svg)](https://github.com/coderofsalvation/xrfragment)
|
//
|
||||||
|
// [![Actions Status](https://github.com/coderofsalvation/xrfragment/workflows/test/badge.svg)](https://github.com/coderofsalvation/xrfragment/actions)
|
||||||
class Parser { // # XR Fragments (key/value params)
|
class Parser { // # XR Fragments (key/value params)
|
||||||
public static var error:String = ""; //
|
public static var error:String = ""; //
|
||||||
// > ⛁ = supported in 3D asset-file (custom property or projection)<br>
|
// > ⛁ = supported in 3D asset-file (custom property or projection)<br>
|
||||||
|
|
Loading…
Reference in New Issue